Files
computer-science-flash-cards/entrypoint.sh
2016-10-20 06:53:17 +07:00

8 lines
173 B
Bash

#!/bin/bash
if [ ! -f /src/db/cards.db ]; then
cp cards-jwasham.db /src/db/cards.db
fi
export CARDS_SETTINGS=/src/config.txt
gunicorn --bind 0.0.0.0:8000 flash_cards:app