mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2025-12-13 23:56:30 +08:00
12 lines
199 B
Bash
12 lines
199 B
Bash
#!/bin/bash
|
|
|
|
if [[ -z "${CFG_DEV}" ]]; then
|
|
echo Production mode
|
|
python3 index.py
|
|
else
|
|
echo Development mode
|
|
python3 dbutils.py create
|
|
nodemon -w aime --legacy-watch index.py
|
|
fi
|
|
|