10 lines
205 B
Python
10 lines
205 B
Python
from app import create_app
|
|
from app.integrations import KafkaIntegration
|
|
from app.config import settings
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == "__main__":
|
|
|
|
app.run(host="0.0.0.0", port=5000, debug=True)
|