forked from Deuxfleurs/bottin
8 lines
190 B
Bash
8 lines
190 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export BOTTIN_DEFAULT_ADMIN_PW=$(openssl rand -base64 24)
|
||
|
echo $BOTTIN_DEFAULT_ADMIN_PW
|
||
|
./consul agent -dev > /dev/null 2>&1 &
|
||
|
./bottin > /dev/null 2>&1 &
|
||
|
go run integration.go
|