@@ -7,23 +7,26 @@ DOCKER_COMPOSE_TOOLS = docker-compose -f docker-compose.tools.yaml
77.PHONY : help
88help :
99 @echo " Available make commands:"
10- @echo " install Install dependencies with pnpm"
11- @echo " set-docker-node-deps Install dependencies in a Docker container without starting the full environment"
12- @echo " docker-dev Run the development environment"
13- @echo " docker-prod Run the production environment"
14- @echo " migrate Run database migrations"
15- @echo " seed Seed the database"
16- @echo " rollback Rollback migrations"
17- @echo " serve Run the development server"
18- @echo " db-test Run a PostgreSQL test database container"
19- @echo " test Run tests in a Docker container (starts db-test, runs tests, and stops db-test)"
20- @echo " lint Check code format and linting in a Docker container"
21- @echo " lint-fix Fix code format and linting issues in a Docker container"
22- @echo " tsc Run TypeScript compiler checks in a Docker container"
23- @echo " init-dev Install dependencies, start the development environment, migrate and seed the database, and start the server"
24- @echo " init-prod Install dependencies, start the production environment, and migrate the database"
25- @echo " reset-db Rollback all migrations, run migrations, and seed the database"
26- @echo " offline Display instructions for enabling offline mode"
10+ @echo " install Install dependencies with pnpm"
11+ @echo " set-docker-node-deps Install dependencies in a Docker container without starting the full environment"
12+ @echo " docker-dev Run the development environment"
13+ @echo " docker-prod Run the production environment"
14+ @echo " migrate Run database migrations"
15+ @echo " seed Seed the database"
16+ @echo " rollback Rollback migrations"
17+ @echo " serve Run the development server"
18+ @echo " db-test Run a PostgreSQL test database container"
19+ @echo " test Run tests in a Docker container (starts db-test, runs tests, and stops db-test)"
20+ @echo " lint Check code format and linting in a Docker container"
21+ @echo " lint-fix Fix code format and linting issues in a Docker container"
22+ @echo " tsc Run TypeScript compiler checks in a Docker container"
23+ @echo " init-dev Install dependencies, start the development environment, migrate and seed the database, and start the server"
24+ @echo " init-prod Install dependencies, start the production environment, and migrate the database"
25+ @echo " reset-db Rollback all migrations, run migrations, and seed the database"
26+ @echo " offline Display instructions for enabling offline mode"
27+ @echo " generate-tuyau Generate Tuyau API files"
28+ @echo " add-tsnocheck-to-tuyau Add tsconfig.json ignore to Tuyau API files"
29+ @echo " tuyau Generate Tuyau API files and add tsconfig.json ignore"
2730
2831.PHONY : install
2932install :
0 commit comments