-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (68 loc) · 1.05 KB
/
Copy path.gitignore
File metadata and controls
83 lines (68 loc) · 1.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Binaries
/server
/gowa-ui
bin/
*.exe
*.exe~
*.dll
*.so
*.dylib
# Config with secrets
config.toml
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Go workspace file
go.work
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Frontend
frontend/node_modules/
frontend/dist/
frontend/.env.local
frontend/.env.*.local
.playwright-mcp/
graphify-out/
.openchrome/
.serena/
.zcode/
specs/
report/
testsprite_tests/
test/
# Playwright
frontend/playwright-report/
frontend/test-results/
frontend/playwright/.cache/
# Embedded frontend build (generated during build)
internal/frontend/dist/*
!internal/frontend/dist/.gitkeep
# Logs
*.log
logs/
# Temp files
tmp/
temp/
uploads/
audio/
# Test results
test-results/
# Docker
docker/.env
# GOWA sidecar local env (contains Basic Auth secret — see gowa/.env.example)
gowa/.env
testsprite_tests/tmp/config.json
# Secrets and build artifacts that must never be tracked
*.env
!docker/.env.example
!frontend/.env.example
!gowa/.env.example
!gowa copy/.env.example
/gowa-ui-linux