-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (48 loc) · 984 Bytes
/
Copy path.gitignore
File metadata and controls
55 lines (48 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Dependencies
node_modules/
.pnp.*
.yarn/*
# Build output
dist/
build/
.next/
out/
*.tsbuildinfo
# Auto-generated by `next build`/`next dev` (re-adds a .next/ reference each build)
next-env.d.ts
# Environment & secrets
.env
.env.*
!.env.example
*.pem
*.key
# Storage / data (self-hosted runtime data must never be committed)
# NOTE: anchored with a leading slash so these match ONLY repo-root runtime dirs and
# never source directories such as apps/api/src/storage/.
/data/
/storage/
/quarantine/
# Project-local PostgreSQL cluster (created by scripts/postgres-local.sh)
/.postgres/
# Setup-wizard resume state (contains secrets; removed on successful install)
/.wizard-state
# Prisma
apps/api/prisma/*.db
apps/api/prisma/migrations/dev.db*
# Logs
*.log
npm-debug.log*
pnpm-debug.log*
# Coverage & test artifacts
coverage/
.vitest/
playwright-report/
test-results/
# Editor / OS
.DS_Store
.idea/
.vscode/*
!.vscode/extensions.json
Thumbs.db
/.update-status.json
/.update.log