Files

12 lines
186 B
Bash

#!/bin/bash
if [[ -z "${CFG_DEV}" ]]; then
echo Production mode
exec python3 index.py
else
echo Development mode
python3 dbutils.py create
exec python3 index.py
fi