You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"dev": "concurrently \"npm run redis\"\"npm run postgres\"\"cd backend && npm run start:dev\"\"cd frontend && npm run dev\"",
"postgres": "docker run -p 5432:5432 -e POSTGRES_USER=solid -e POSTGRES_PASSWORD=solid postgres:14-alpine",
"redis": "docker run -p 6379:6379 redis:7-alpine",
"setup": "npm install && cd frontend && npm install && cd ../backend && npm install",
"precommit": "concurrently \"cd backend && npm run test && npm run lint\"\"cd frontend && npm run lint\"",
"codegen:full": "npm run copytypes && curl http://localhost:3000/docs-json > frontend/src/api/swagger.json && cd backend && npx prettier --write ../frontend/src/api/swagger.json && cd ../frontend && npm run codegen",
"copytypes": "cd backend/src/types && for f in *; do echo -e '/* Edit this file in backend/src/types */\n' > ../../../frontend/src/types/$f && cat $f >> ../../../frontend/src/types/$f; done"