mirror of
https://github.com/GSA/notifications-api.git
synced 2026-03-24 20:20:34 -04:00
8 lines
178 B
Python
8 lines
178 B
Python
from app import create_app
|
|
import os
|
|
|
|
application = create_app(os.getenv('NOTIFICATIONS_API_ENVIRONMENT') or 'development')
|
|
|
|
if __name__ == "__main__":
|
|
application.run()
|