-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
159 lines (137 loc) · 2.18 KB
/
.gitignore
File metadata and controls
159 lines (137 loc) · 2.18 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# Copyright (c) 2025 CityLens Contributors
# Licensed under the GNU General Public License v3.0 (GPL-3.0)
# Documentation & Guides (DO NOT COMMIT)
# Scripts & Shell files (DO NOT COMMIT)
*.sh
**/*.sh
# Allow specific backend scripts
!backend/start.sh
!backend/scripts/export_database.sh
!backend/scripts/import_database.sh
release.sh
# SQL Scripts (DO NOT COMMIT - for local use only)
backend/scripts/*.sql
# Python utility scripts (DO NOT COMMIT)
fix_*.py
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.pytest_cache/
.coverage
htmlcov/
*.log
# Documentation (private)
CityLens_Docs/
CityLens_Docs/*
**/CityLens_Docs/
# Virtual Environment
venv/
env/
ENV/
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-debug.log*
dist/
dist-ssr/
*.local
# Flutter/Dart
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
build/
*.g.dart
*.freezed.dart
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Environment files (NEVER commit actual secrets)
.env
.env.local
.env.*.local
backend/.env
web-dashboard/.env
web-dashboard/.env.local
mobile-app/.env
# BUT allow .env.example and .env.production.example templates
!.env.example
!.env.production.example
!backend/.env.example
!backend/.env.production.example
!web-dashboard/.env.example
!mobile-app/.env.example
# Database
*.db
*.sqlite
*.sqlite3
# OSM Data files (large binary files)
*.osm.pbf
*.geojson
backend/data/osm/*.osm.pbf
backend/data/osm/*.geojson
# Video files (large media files)
*.mp4
*.mov
*.avi
*.mkv
*.webm
**/*.mp4
**/*.mov
**/*.avi
**/*.mkv
**/*.webm
# Uploads
uploads/
media/
# Docker (allow .dockerignore for deployment)
# .dockerignore is needed for Railway/Docker builds
# Logs
logs/
*.log
npm-debug.log*
# Testing
coverage/
.nyc_output/
# Misc
.cache/
.temp/
*.bak
*.tmp
backend/.env
backend/.env.*
web-dashboard/node_modules/
web-dashboard/dist/
web-dashboard/.env
web-dashboard/.env.*web-dashboard/.next/
web-dashboard/next-env.d.ts
web-dashboard/tsconfig.tsbuildinfo
web-dashboard/.next/
web-dashboard/tsconfig.tsbuildinfo
web-dashboard/out/