Initial scaffold

This commit is contained in:
megaproxy 2026-05-09 00:00:26 +01:00
commit c6d8e902f6
3 changed files with 122 additions and 0 deletions

49
.gitignore vendored Normal file
View file

@ -0,0 +1,49 @@
# Secrets — never commit
.env
.env.*
!.env.example
*.pem
*.key
*.p12
*.pfx
secrets/
credentials/
.aws/
.ssh/
# Dependencies / build artifacts
node_modules/
__pycache__/
*.py[cod]
.venv/
venv/
env/
dist/
build/
target/
*.egg-info/
# Editor / OS noise
.DS_Store
Thumbs.db
.vscode/
.idea/
*.swp
*.swo
# Logs / caches
*.log
.cache/
.pytest_cache/
.mypy_cache/
.ruff_cache/
coverage/
.coverage
.nyc_output/
# Tauri / Vite
src-tauri/gen/
src-tauri/target/
src-tauri/Cargo.lock
*.tsbuildinfo
.vite/