chore: bootstrap project structure

This commit is contained in:
2026-04-28 10:16:34 +03:00
commit 782a00d6b8
8 changed files with 110 additions and 0 deletions

68
.gitignore vendored Normal file
View File

@@ -0,0 +1,68 @@
# Dependencies
node_modules/
.pnpm-store/
.pnp.*
.yarn/
bower_components/
# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
env/
.python-version
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Build output
dist/
build/
out/
target/
*.tsbuildinfo
# Environment / secrets
.env
.env.*
!.env.example
*.pem
*.key
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# IDE / editor
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
desktop.ini
# Coverage / cache
coverage/
.nyc_output/
.cache/
.parcel-cache/
.next/
.nuxt/
.turbo/
.svelte-kit/
# Misc
*.tmp
.tmp/