-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
executable file
·36 lines (28 loc) · 1.02 KB
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.script import Manager
from flask.ext.migrate import Migrate, MigrateCommand
from hipcooks.commands.assistant_credit_and_gc_award import AssistantCreditAndGiftCertificateAward
from hipcooks import settings
app = Flask(__name__)
app.secret_key = settings.SECRET_KEY
app.config['SQLALCHEMY_DATABASE_URI'] = settings.SQLALCHEMY_DATABASE_URI
app.config['UPLOAD_FOLDER'] = settings.UPLOAD_FOLDER
db = SQLAlchemy(app)
from hipcooks import *
migrate = Migrate(app, db)
manager = Manager(app)
manager.add_command('db', MigrateCommand)
manager.add_command('assistant_credit_and_gc_award', AssistantCreditAndGiftCertificateAward())
@manager.command
def captchas():
with app.app_context():
import os
try:
os.makedirs(app.config["CAPTCHA_PREGEN_PATH"])
except os.error as e:
logging.info(e)
generate_images(app.config["CAPTCHA_PREGEN_MAX"])
if __name__ == '__main__':
manager.run()