Blame view

bin/dev.sh 202 Bytes
1fe96a6c   Antoine Goutenoir   Add home-brewed l...
1
2
#!/usr/bin/env bash

51c6bf4a   Antoine Goutenoir   docs: cookie crum...
3
# Run this and then visit http://localhost:5000
1fe96a6c   Antoine Goutenoir   Add home-brewed l...
4
5
6
7
8
9

source venv/bin/activate
export FLASK_APP=flaskr
export FLASK_ENV=development
export FLASK_RUN_EXTRA_FILES="content.yml"

51c6bf4a   Antoine Goutenoir   docs: cookie crum...
10
flask run