mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-13 08:34:33 -05:00
7 lines
179 B
Python
7 lines
179 B
Python
|
|
from app import create_app
|
||
|
|
import os
|
||
|
|
|
||
|
|
application = create_app(os.getenv('NOTIFICATIONS_ADMIN_ENVIRONMENT') or 'development')
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
application.run()
|