mirror of
https://github.com/shouptech/flask-tutorial.git
synced 2026-02-03 15:39:44 +00:00
Fix malformed heredoc in circle config
This commit is contained in:
parent
a6162261d9
commit
a7ab74683c
1 changed files with 2 additions and 2 deletions
|
|
@ -16,12 +16,12 @@ jobs:
|
||||||
name: Create config file
|
name: Create config file
|
||||||
command: |
|
command: |
|
||||||
mkdir -p instance
|
mkdir -p instance
|
||||||
echo << EOF
|
cat << EOF > instance/config.py
|
||||||
FLASK_APP='flaskr'
|
FLASK_APP='flaskr'
|
||||||
FLASK_ENV='development'
|
FLASK_ENV='development'
|
||||||
SECRET_KEY='test'
|
SECRET_KEY='test'
|
||||||
SQLALCHEMY_DATABASE_URI='sqlite:////tmp/flaskr.sqlite.db'
|
SQLALCHEMY_DATABASE_URI='sqlite:////tmp/flaskr.sqlite.db'
|
||||||
EOF > instance/config.py
|
EOF
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Run coverage tests
|
name: Run coverage tests
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue