haldis/app/james.py

17 lines
250 B
Python
Raw Normal View History

2015-03-31 18:15:22 +00:00
from views import *
from app import app, db
from admin import admin
from login import login_manager
from models import *
from forms import *
from utils import *
from views import *
2015-04-02 10:45:38 +00:00
if app.debug:
app.run(host='0.0.0.0', port=80)
else:
app.run()