13 lines
163 B
Bash
Executable File
13 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
source .env
|
|
|
|
# Check Redis is up
|
|
|
|
# Check Web API is up with simple curl of hostcheck
|
|
|
|
python -m geeksbot |