mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-17 02:23:57 -05:00
21 lines
559 B
Python
21 lines
559 B
Python
import os
|
|
from flask.ext.script import Manager, Server
|
|
from app import create_app
|
|
|
|
|
|
application = create_app()
|
|
manager = Manager(application)
|
|
port = int(os.environ.get('PORT', 6012))
|
|
manager.add_command("runserver", Server(host='0.0.0.0', port=port))
|
|
|
|
|
|
@manager.command
|
|
def list_routes():
|
|
"""List URLs of all application routes."""
|
|
for rule in sorted(application.url_map.iter_rules(), key=lambda r: r.rule):
|
|
print("{:10} {}".format(", ".join(rule.methods - set(['OPTIONS', 'HEAD'])), rule.rule))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
manager.run()
|