fix: Use port 5000 to follow convention
Some checks failed
Build Docker / BuildImage (push) Failing after 1m47s

This commit is contained in:
2026-04-04 11:37:44 +11:00
parent d66fd8f58e
commit f680eb9492
3 changed files with 10 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ uv sync
uv run python main.py
```
The app runs on `0.0.0.0:8000` by default.
The app runs on `0.0.0.0:5000` by default.
## API Endpoints

View File

@@ -34,6 +34,10 @@ body {
radial-gradient(circle at 10% 10%, #cfeadf 0, transparent 32%),
radial-gradient(circle at 90% 0%, #b4d6e3 0, transparent 28%),
var(--bg);
background-repeat: no-repeat;
background-size: 140vmax 140vmax, 120vmax 120vmax, auto;
background-position: left top, right top, center;
background-attachment: fixed;
}
@media (prefers-color-scheme: dark) {
@@ -42,6 +46,10 @@ body {
radial-gradient(circle at 10% 10%, #143342 0, transparent 35%),
radial-gradient(circle at 90% 0%, #233a46 0, transparent 30%),
var(--bg);
background-repeat: no-repeat;
background-size: 140vmax 140vmax, 120vmax 120vmax, auto;
background-position: left top, right top, center;
background-attachment: fixed;
}
}

View File

@@ -5,4 +5,4 @@ app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=False)
app.run(host="0.0.0.0", port=5000, debug=False)