mirror of https://github.com/JohnHammond/CTFd.git
7 lines
144 B
Python
7 lines
144 B
Python
|
from CTFd import create_app
|
||
|
|
||
|
app = create_app()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)
|