Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy committed Mar 26, 2019
1 parent bde20a5 commit 2d918f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

class Config(object):
SECRET_KEY = os.urandom(24)
SECRET_KEY = 'key'
SQLALCHEMY_DATABASE_URI = 'sqlite:///database.db'
SQLALCHEMY_TRACK_MODIFICATIONS = False
ADMIN = {'username': 'admin',
Expand Down
2 changes: 1 addition & 1 deletion run_web.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gunicorn run:app --config=./configs/gunicorn.py &
gunicorn run:app --config=./configs/gunicorn.py &

0 comments on commit 2d918f4

Please sign in to comment.