Flask app with Clean Architecture (core/infra), RSS feed parsing, avatar resolution from social.org files, Docker + Nginx setup.
5 lines
99 B
Python
5 lines
99 B
Python
from src.infra.http.app import app
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0", port=8080)
|