-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (38 loc) · 1.12 KB
/
Copy path.gitignore
File metadata and controls
47 lines (38 loc) · 1.12 KB
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
# Dependencies — never commit, and never copy into the image either (.dockerignore)
node_modules
# Next.js build output
.next
/out
# Generated by `next dev`/`next build`; regenerated on demand
next-env.d.ts
# TypeScript incremental build state
*.tsbuildinfo
# Environment. A plain `.env` is picked up by docker compose for ${DBADMIN_PORT},
# ${DBADMIN_SQLITE_DIR} and friends, so it must never be committed.
.env
.env.*
!.env.example
# Runtime data. compose.yml bind-mounts ./data/sqlite and ./data/exports into
# the container, so the directories must survive a fresh clone — but nothing
# that lands in them belongs in git.
/data/*
!/data/sqlite
!/data/exports
/data/sqlite/*
/data/exports/*
!/data/sqlite/.gitkeep
!/data/exports/.gitkeep
# E2E artefacts — rewritten by every run
tests/e2e/screenshots/
tests/e2e/report.json
# Test coverage
coverage
# OS / logs
.DS_Store
*.log
# Editor and IDE settings. These describe one machine's setup, not the project:
# PhpStorm rewrites .idea/workspace.xml on every cursor move, and .idea/
# dataSources* is where it keeps database connections and their credentials.
.idea/
.vscode/
*.swp