Files
CTFd/wsgi.py
2019-04-17 01:36:30 -04:00

9 lines
189 B
Python

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)