Esempio n. 1
0
'''
Run the application
'''

# under normal circumstances, this script would not be necessary. the
# sample_application would have its own setup.py and be properly installed;
# however since it is not bundled in the sdist package, we need some hacks
# to make it work

import os
import sys

sys.path.append(os.path.dirname(__name__))

#from sample_application import create_app
from dashboard_app import create_app

# create an app instance
app = create_app()

app.run(debug=True, port=5001)
Esempio n. 2
0
import sys, os
INTERP = os.path.join(os.environ['HOME'], '.virtualenvs', 'env', 'bin', 'python')
print(INTERP)
if sys.executable != INTERP:
	os.execl(INTERP, INTERP, *sys.argv)

current_dir = os.getcwd()
app_dir = os.path.join(current_dir, 'dashboard')
#sys.path.append(os.getcwd())
sys.path.append(app_dir)


from dashboard_app import create_app

application = create_app()



# Uncomment next two lines to enable debugging
#from werkzeug.debug import DebuggedApplication
#application = DebuggedApplication(application, evalex=True)

#from flask import Flask
#application = Flask(__name__)

#@application.route('/')
#def index():
#	return 'Hello passenger'