mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-24 14:07:03 +01:00
Add Cloud9 development running support
This commit is contained in:
parent
fdb3749d90
commit
d3575a29d5
6
run.py
6
run.py
@ -1,9 +1,10 @@
|
||||
#!/usr/bin/env python2
|
||||
from titanembeds.app import app
|
||||
|
||||
if __name__ == "__main__":
|
||||
def init_debug():
|
||||
import os
|
||||
from flask import jsonify, request
|
||||
|
||||
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1' # Testing oauthlib
|
||||
|
||||
# Session viewer https://gist.github.com/babldev/502364a3f7c9bafaa6db
|
||||
@ -29,5 +30,6 @@ if __name__ == "__main__":
|
||||
decoded = None
|
||||
return jsonify(session_cookie=decoded)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
init_debug()
|
||||
app.run(host="0.0.0.0",port=3000,debug=True)
|
||||
|
Loading…
Reference in New Issue
Block a user