Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions etc/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
alembic upgrade head
python load_csv.py --path ${DIALOG_DATA_PATH}

if "${TEST}"; then
if [ -n "${TEST}" ]; then
python -m unittest
exit 0
fi

if "${DEBUG}"; then
if [ -n "${DEBUG}" ]; then
uvicorn main:app --host 0.0.0.0 --port ${PORT} --reload
else
uvicorn main:app --host 0.0.0.0 --port ${PORT}
Expand Down