-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
43 lines (34 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Standard Library Imports
# -----------------------------------------------------------------------------
import os
# -----------------------------------------------------------------------------
# Related Libraries Imports
# -----------------------------------------------------------------------------
from flask_script import Manager, Server
from flask_script.commands import ShowUrls, Clean
# -----------------------------------------------------------------------------
# Local Imports
# -----------------------------------------------------------------------------
from app.app import create_app
from app.settings import DevConfig, ProdConfig
HERE = os.path.abspath(os.path.dirname(__file__))
TEST_PATH = os.path.join(HERE, 'tests')
app = create_app(DevConfig)
manager = Manager(app)
@manager.command
def test():
"""Run the tests."""
import pytest
exit_code = pytest.main([TEST_PATH, '--verbose'])
return exit_code
# register commands with app manager
# now to run app type:
# $ python manage.py runserver
manager.add_command("runserver", Server())
manager.add_command("show-urls", ShowUrls())
manager.add_command("clean", Clean())
if __name__ == "__main__":
manager.run()