-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanage.py
executable file
·145 lines (112 loc) · 3.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#!/usr/bin/env python
import os
import subprocess
# from config import Config
from flask.ext.migrate import Migrate, MigrateCommand
from flask.ext.script import Manager, Shell
from redis import Redis
from rq import Connection, Queue, Worker
from app import create_app, db
from app.models import (CsvBodyCell, CsvBodyRow, CsvContainer, CsvHeaderCell,
CsvHeaderRow, Descriptor, OptionAssociation,
RequiredOptionDescriptor, Resource, ResourceBase,
ResourceSuggestion, Role, TextAssociation, User)
# Import settings from .env file. Must define FLASK_CONFIG
if os.path.exists('.env'):
print('Importing environment from .env file')
for line in open('.env'):
var = line.strip().split('=')
if len(var) == 2:
os.environ[var[0]] = var[1]
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
manager = Manager(app)
migrate = Migrate(app, db)
def make_shell_context():
return dict(
app=app,
db=db,
User=User,
Role=Role,
CsvBodyCell=CsvBodyCell,
CsvBodyRow=CsvBodyRow,
CsvContainer=CsvContainer,
CsvHeaderCell=CsvHeaderCell,
CsvHeaderRow=CsvHeaderRow,
ResourceBase=ResourceBase,
ResourceSuggestion=ResourceSuggestion,
Descriptor=Descriptor,
TextAssociation=TextAssociation,
OptionAssociation=OptionAssociation)
manager.add_command('shell', Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)
@manager.command
def test():
"""Run the unit tests."""
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
@manager.command
def recreate_db():
"""
Recreates a local database. You probably should not use this on
production.
"""
db.drop_all()
db.create_all()
db.session.commit()
@manager.option(
'-n',
'--number-users',
default=10,
type=int,
help='Number of each model type to create',
dest='number_users')
def add_fake_data(number_users):
"""
Adds fake data to the database.
"""
User.generate_fake(count=number_users)
ResourceSuggestion.generate_fake_edits()
ResourceSuggestion.generate_fake_inserts()
@manager.command
def add_seattle_data():
Resource.add_seattle_data()
@manager.command
def setup_dev():
"""Runs the set-up needed for local development."""
setup_general()
admin_email = os.environ.get('ADMIN_EMAIL') or '[email protected]'
if User.query.filter_by(email=admin_email).first() is None:
User.create_confirmed_admin('Default', 'Admin', admin_email,
'password')
@manager.command
def setup_prod():
"""Runs the set-up needed for production."""
setup_general()
def setup_general():
"""Runs the set-up needed for both local development and production."""
Role.insert_roles()
RequiredOptionDescriptor.init_required_option_descriptor()
@manager.command
def run_worker():
"""Initializes a slim rq task queue."""
listen = ['default']
conn = Redis(
host=app.config['RQ_DEFAULT_HOST'],
port=app.config['RQ_DEFAULT_PORT'],
db=0,
password=app.config['RQ_DEFAULT_PASSWORD'])
with Connection(conn):
worker = Worker(map(Queue, listen))
worker.work()
@manager.command
def format():
"""Runs the yapf and isort formatters over the project."""
isort = 'isort -rc *.py app/'
yapf = 'yapf -r -i *.py app/'
print 'Running {}'.format(isort)
subprocess.call(isort, shell=True)
print 'Running {}'.format(yapf)
subprocess.call(yapf, shell=True)
if __name__ == '__main__':
manager.run()