-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanage.py
61 lines (44 loc) · 1.36 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
import os
import unittest
from flask_migrate import Migrate, MigrateCommand
from flask_script import Manager
from main import create_app, db
from main.model import User, Post
from sql_scripts import create_ageGroup,create_establishment,create_topics,create_subtopics
app = create_app(os.getenv('BOILERPLATE_ENV') or 'int')
app.app_context().push()
manager = Manager(app)
migrate = Migrate(app, db)
manager.add_command('db', MigrateCommand)
@manager.command
def run():
app.run(host="0.0.0.0")
@manager.command
def test():
"""Runs the unit tests."""
tests = unittest.TestLoader().discover('test', pattern='test*.py')
result = unittest.TextTestRunner(verbosity=2).run(tests)
if result.wasSuccessful():
return 0
return 1
@manager.command
def seed():
"""Add seed data to the database."""
db.create_all()
# john = User(username='Lony Das', email='[email protected]')
# post = Post()
# post.title = "Story time at Libray"
# post.body = "This is the first post"
# post.author = john
# db.session.add(post)
# db.session.add(john)
# db.session.commit()
# print(User.query.all())
# print(Post.query.all())
#create_ageGroup(db.session)
#create_establishment(db.session)
#create_topics(db.session)
create_subtopics(db.session)
db.session.commit()
if __name__ == '__main__':
manager.run()