haldis/app/james.py
2015-04-02 12:45:38 +02:00

16 lines
250 B
Python

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 *
if app.debug:
app.run(host='0.0.0.0', port=80)
else:
app.run()