A sample repo demonstrating the steps outlined in this documentation.
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
Make sure redis is installed
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
redis-server
. venv/bin/activate
FLASK_APP=sample FLASK_ENV=development flask run
See these instructions for initial setup.
Actual deployment is handled by the Deploy Action.