arch & placeholders

This commit is contained in:
Maxime Réaux 2025-12-19 09:56:45 +01:00
parent a3b16ae58a
commit 57543e139a
10 changed files with 233 additions and 2 deletions

60
.gitignore vendored Normal file
View file

@ -0,0 +1,60 @@
# =========================
# Python bytecode & cache
# =========================
__pycache__/
*.py[cod]
*$py.class
# =========================
# Virtual environments
# =========================
.env
.venv
env/
venv/
ENV/
# =========================
# Packaging / build
# =========================
build/
dist/
*.egg-info/
.eggs/
# =========================
# Test & coverage
# =========================
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
# =========================
# IDE / editors
# =========================
.vscode/
.idea/
*.swp
*.swo
# =========================
# OS generated files
# =========================
.DS_Store
Thumbs.db
# =========================
# Logs
# =========================
*.log
# =========================
# Application data
# =========================
data/*.json
data/*.bak
# But keep example files
!data/example.json