Update .gitignore to exclude TypeScript build info files and modify package.json to enhance the dev:infra script for improved local development environment setup.
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 10s
CI / Go — node-agent tests (push) Failing after 8s
CI / Go — edge-gateway build (push) Successful in 18s

This commit is contained in:
TheOnlyMace
2026-07-05 14:25:01 +02:00
parent 212d46eb0c
commit d8cc04df21
4 changed files with 12 additions and 2 deletions

9
.dockerignore Normal file
View File

@@ -0,0 +1,9 @@
node_modules/
dist/
.next/
.env
.env.local
*.log
data/
**/*.tsbuildinfo
.git/

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
node_modules/ node_modules/
dist/ dist/
*.tsbuildinfo
.next/ .next/
.env .env
.env.local .env.local

View File

@@ -7,7 +7,7 @@
}, },
"scripts": { "scripts": {
"dev": "turbo run dev", "dev": "turbo run dev",
"dev:infra": "docker compose -f deploy/compose/compose.dev.yml --env-file .env up -d", "dev:infra": "docker compose -f deploy/compose/compose.dev.yml --env-file .env up -d postgres redis minio minio-init mailpit",
"build": "turbo run build", "build": "turbo run build",
"lint": "turbo run lint", "lint": "turbo run lint",
"typecheck": "turbo run typecheck", "typecheck": "turbo run typecheck",

File diff suppressed because one or more lines are too long