Organizing mailserver code better, fixing default flask server issues, and fixing modal issues

This commit is contained in:
Kevin Chung
2016-07-29 12:53:32 -04:00
parent 431fab0520
commit afbd4b5f8a
5 changed files with 25 additions and 14 deletions

View File

@@ -1,3 +1,3 @@
from CTFd import create_app
app = create_app()
app.run(debug=True, host="0.0.0.0", port=4000)
app.run(debug=True, threaded=True, host="0.0.0.0", port=4000)