7 lines
134 B
Python
7 lines
134 B
Python
from app import create_app
|
|
from config import config
|
|
|
|
app = create_app(config['production'])
|
|
|
|
if __name__ == "__main__":
|
|
app.run() |