remove celery for now
This commit is contained in:
parent
64c5a24817
commit
6ac29ca2c3
1 changed files with 0 additions and 2 deletions
2
app.py
2
app.py
|
@ -3,13 +3,11 @@ from models import db
|
|||
from flask_migrate import Migrate
|
||||
from routes import api
|
||||
import config
|
||||
from celery_utils import make_celery
|
||||
|
||||
app = Flask(__name__)
|
||||
app.config.from_object(config.Config)
|
||||
db.init_app(app)
|
||||
migrate = Migrate(app, db)
|
||||
celery = make_celery(app)
|
||||
app.register_blueprint(api)
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue