https://github.com/CTFd/CTFd/milestone/6
This commit is contained in:
Kevin Chung
2019-04-17 01:36:30 -04:00
committed by GitHub
parent 33367422a5
commit b6d54b9ee9
278 changed files with 3659 additions and 13735 deletions

View File

@@ -1,6 +1,24 @@
from CTFd import create_app, socketio
from CTFd import create_app
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("--profile", help="Enable flask_profiler profiling", action="store_true")
args = parser.parse_args()
app = create_app()
# app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)
socketio.run(app, debug=True, host="127.0.0.1", port=4000)
if args.profile:
import flask_profiler
app.config["flask_profiler"] = {
"enabled": app.config["DEBUG"],
"storage": {
"engine": "sqlite"
},
"basicAuth": {
"enabled": False,
},
}
flask_profiler.init_app(app)
print(" * Flask profiling running at http://127.0.0.1:4000/flask-profiler/")
app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)