+1
-1
AGENTS.md
+1
-1
AGENTS.md
···
33
33
34
34
## 💻 Development Commands
35
35
* **Backend:** `just backend run`
36
-
* **Frontend:** `just frontend dev`
36
+
* **Frontend:** `just frontend run`
37
37
* **Tests:** `just backend test` (run from repo root, not from backend/)
38
38
* **Linting:** `just backend lint` (Python) / `just frontend check` (Svelte)
39
39
* **Migrations:** `just backend migrate "message"` (create), `just backend migrate-up` (apply)
+1
-1
README.md
+1
-1
README.md
+2
backend/justfile
+2
backend/justfile
+1
-1
docs/README.md
+1
-1
docs/README.md
+1
-1
docs/deployment/environments.md
+1
-1
docs/deployment/environments.md
+7
-4
frontend/justfile
+7
-4
frontend/justfile
···
1
1
set shell := ["bash", "-eu", "-o", "pipefail", "-c"]
2
-
default := "dev"
2
+
default := "run"
3
+
4
+
alias r := run
5
+
alias dev := run
3
6
4
7
# run frontend dev server (hot reloads)
5
-
dev:
6
-
cd {{justfile_directory()}}/frontend && bun run dev --host 0.0.0.0
8
+
run:
9
+
bun run dev --host 0.0.0.0
7
10
8
11
# check svelte types
9
12
check:
10
-
cd {{justfile_directory()}}/frontend && bun run check
13
+
bun run check