+1
-1
.github/workflows/deploy-prod.yml
+1
-1
.github/workflows/deploy-prod.yml
+1
-1
.github/workflows/deploy-staging.yml
+1
-1
.github/workflows/deploy-staging.yml
···
36
if [ "${{ steps.changes.outputs.migrations }}" == "true" ]; then
37
echo "๐ migrations detected - will run via release_command before deployment"
38
fi
39
-
flyctl deploy --config backend/fly.staging.toml --remote-only -a relay-api-staging
40
env:
41
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STAGING }}
···
36
if [ "${{ steps.changes.outputs.migrations }}" == "true" ]; then
37
echo "๐ migrations detected - will run via release_command before deployment"
38
fi
39
+
flyctl deploy --config backend/fly.staging.toml --remote-only -a relay-api-staging .
40
env:
41
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STAGING }}
+3
-3
README.md
+3
-3
README.md
···
34
using [just](https://github.com/casey/just):
35
36
```bash
37
-
# install dependencies
38
-
cd backend && uv sync
39
just frontend install
40
41
# run backend (hot reloads at http://localhost:8001)
42
-
just run-backend
43
44
# run frontend (hot reloads at http://localhost:5173)
45
just frontend dev
···
34
using [just](https://github.com/casey/just):
35
36
```bash
37
+
# install dependencies (uv handles backend venv automatically)
38
+
uv sync # For root-level deps, if any, and initializes uv
39
just frontend install
40
41
# run backend (hot reloads at http://localhost:8001)
42
+
just backend run
43
44
# run frontend (hot reloads at http://localhost:5173)
45
just frontend dev
+2
-2
backend/fly.staging.toml
+2
-2
backend/fly.staging.toml
+2
-2
backend/fly.toml
+2
-2
backend/fly.toml
+2
-2
backend/justfile
+2
-2
backend/justfile