-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (44 loc) · 950 Bytes
/
Copy path.gitignore
File metadata and controls
50 lines (44 loc) · 950 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
# Env / secrets
.env
*.env.local
# Go
/backend/argos
/backend/argos.exe
*.test
*.out
/backend/coverage.*
/backend/dist/
# Node / frontend
/frontend/node_modules/
/frontend/dist/
/frontend/.vite/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Frontend embebido (se genera en build). Solo se trackean fs.go y
# placeholders para que `go build ./...` funcione sin el frontend.
/backend/static/*
!/backend/static/fs.go
!/backend/static/index.html
!/backend/static/assets
/backend/static/assets/*
!/backend/static/assets/.gitkeep
# Editor
.vscode/
.idea/
*.swp
*.swo
.DS_Store
# Runtime / local data
*.db
*.db-journal
*.db-wal
*.db-shm
# Docker
docker-compose.override.yml
# Exception: the demo-stack override is the source-of-truth template
# for ~/argos-demo/docker-compose.override.yml; safe to commit because
# it has no secrets (the .env is generated at init time and IS ignored).
!scripts/demo/docker-compose.override.yml
site/
__pycache__/