Files
Reklamator/run.py
T

13 lines
269 B
Python
Raw Normal View History

#!/usr/bin/env python3
"""
Reklamator - Anonymous Feedback Platform
Application entry point
"""
import os
from app import create_app
app = create_app(os.getenv('FLASK_ENV', 'development'))
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)