init CTFd source
This commit is contained in:
14
wsgi.py
Normal file
14
wsgi.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import os
|
||||
|
||||
# Detect if we're running via `flask run` and don't monkey patch
|
||||
if not os.getenv("FLASK_RUN_FROM_CLI"):
|
||||
from gevent import monkey
|
||||
|
||||
monkey.patch_all()
|
||||
|
||||
from CTFd import create_app
|
||||
|
||||
app = create_app()
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)
|
||||
Reference in New Issue
Block a user