Files
ducoterra a2c4f81147
Build and Push Containers / test (push) Successful in 9s
Build and Push Containers / build-and-push (push) Successful in 16s
fix heartbeat issue
2026-08-02 11:35:13 -04:00

28 lines
546 B
TOML

[project]
name = "web-on-the-fly"
version = "0.1.0"
description = "Flask app that streams AI-generated fake websites via SSE"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"flask>=3.1.3",
"gevent>=24.11.1",
"gunicorn>=23.0.0",
"httpx>=0.28.1",
"lxml>=5.0.0",
"python-dotenv>=1.2.2",
"valkey>=6.0.0",
]
[project.scripts]
run = "app:app.run(host='0.0.0.0', port=5000, debug=True)"
[tool.pyright]
typeCheckingMode = "strict"
[dependency-groups]
dev = [
"pyright>=1.1.411",
"ruff>=0.16.1",
]