Pre-web changes

This commit is contained in:
Eric Gullickson
2025-11-05 11:04:48 -06:00
parent 45fea0f307
commit 0c3ed01f4b
25 changed files with 257 additions and 3538 deletions

View File

@@ -278,12 +278,12 @@ Per CLAUDE.md, all code must pass:
```bash
# Development
make setup # Build + start + migrate
make rebuild # Rebuild containers
make logs # Tail all logs
make test # Run all tests
make start # Start services
make migrate # Run migrations
make setup # Build + start + migrate
make rebuild # Rebuild containers
make logs # Tail all logs
docker compose exec mvp-backend npm test # Run backend test suite inside container
make start # Start services
make migrate # Run migrations
# Testing
cd backend && npm test -- features/stations
@@ -299,7 +299,7 @@ echo "YOUR_API_KEY" > ./secrets/app/google-maps-api-key.txt
# Verification
docker compose exec mvp-frontend cat /usr/share/nginx/html/config.js
curl -H "Authorization: Bearer $TOKEN" http://localhost:3001/api/stations/saved
curl -H "Authorization: Bearer $TOKEN" https://motovaultpro.com/api/stations/saved
```
## Final Notes