Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup Script #2952

Open
wants to merge 16 commits into
base: develop-postgres
Choose a base branch
from
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ web_modules/
.env.test.local
.env.production.local
.env.local

.env.backup
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@sinclair/typebox": "^0.34.15",
"ajv-formats": "^3.0.1",
"close-with-grace": "^2.2.0",
"dotenv": "^16.4.7",
prayanshchh marked this conversation as resolved.
Show resolved Hide resolved
"drizzle-orm": "^0.39.1",
"drizzle-zod": "0.6.1",
"env-schema": "^6.0.1",
Expand All @@ -23,6 +24,7 @@
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.0",
"graphql-upload-minimal": "^1.6.1",
"inquirer": "^12.3.2",
"mercurius": "^16.0.1",
"mercurius-upload": "^8.0.0",
"minio": "^8.0.4",
Expand All @@ -37,6 +39,7 @@
"@faker-js/faker": "^9.4.0",
"@swc/cli": "0.6.0",
"@swc/core": "^1.10.9",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^3.0.3",
"drizzle-kit": "^0.30.4",
Expand Down Expand Up @@ -90,6 +93,7 @@
"start_development_server_with_debugger": "tsx watch --inspect=${API_DEBUGGER_HOST:-127.0.0.1}:${API_DEBUGGER_PORT:-9229} ./src/index.ts",
"start_production_server": "pnpm build_production && node ./dist/index.js",
"start_production_server_with_debugger": "pnpm build_production && node --inspect=${API_DEBUGGER_HOST:-127.0.0.1}:${API_DEBUGGER_PORT:-9229} ./dist/index.js",
"setup": "tsx setup.ts",
"upgrade_drizzle_metadata": "drizzle-kit up"
},
"type": "module",
Expand Down
Loading
Loading