CTFd/serve.py

5 lines
112 B
Python

from CTFd import create_app
app = create_app()
app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)