Initial commit
This commit is contained in:
commit
b22231c8b6
40 changed files with 2443 additions and 0 deletions
77
.gitignore
vendored
Normal file
77
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# Virtual Environment
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
.venv
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Docker
|
||||
Dockerfile.builder
|
||||
Dockerfile.entwine
|
||||
Dockerfile.frontend
|
||||
docker-compose.yml
|
||||
|
||||
# Répertoires Potree
|
||||
backend/static/potree/
|
||||
frontend/static/potree/
|
||||
|
||||
# Données LiDAR (fichiers volumineux)
|
||||
backend/data/ept/*/ept-data/*.laz
|
||||
backend/data/ept/*/ept-data/*.las
|
||||
backend/data/uploads/*.laz
|
||||
backend/data/uploads/*.las
|
||||
backend/data/uploads/delete.txt
|
||||
|
||||
# Fichiers de données temporaires
|
||||
backend/data/ept/*/*.json
|
||||
backend/data/ept/*/*/*.json
|
||||
backend/data/ept/*/*/*/*.json
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Fichiers temporaires
|
||||
*.tmp
|
||||
*.temp
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Fichiers de configuration locale
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Fichiers générés
|
||||
*.pkl
|
||||
*.h5
|
||||
*.npz
|
||||
Loading…
Add table
Add a link
Reference in a new issue