mirror of
https://github.com/LukeHagar/pypistats.org.git
synced 2025-12-09 20:57:48 +00:00
10 lines
256 B
Python
10 lines
256 B
Python
"""Run the application."""
|
|
from pypistats.application import create_app
|
|
from pypistats.settings import DevConfig
|
|
from pypistats.settings import ProdConfig
|
|
from pypistats.settings import TestConfig
|
|
|
|
|
|
# change this for migrations
|
|
app = create_app(DevConfig)
|