Files
app-service/.gitignore
matteoscrugli ba53e0eff0 Refactor settings system and improve context initialization
Backend:
- Add type validation and coercion for settings API
- Implement SettingStorage and SettingType in registry
- Improve CRUD operations for settings

Frontend:
- Refactor Theme, Language, Sidebar, ViewMode contexts
- Simplify admin components (GeneralTab, SettingsTab, UsersTab)
- Add new settings endpoints to API client
- Improve App initialization flow

Infrastructure:
- Update Dockerfile and docker-compose.yml
- Add .dockerignore
- Update Makefile and README

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 18:14:47 +01:00

91 lines
782 B
Plaintext

# Environment variables
.env
.env.local
.env.*.local
# 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
venv/
ENV/
env/
.venv
# FastAPI / Alembic
alembic.ini.bak
*.db
*.sqlite
*.sqlite3
config/
# Node / npm / pnpm
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-store/
yarn.lock
pnpm-lock.yaml
# React / Vite
dist/
dist-ssr/
*.local
.vite/
# IDEs
.vscode/
.idea/
.claude/
*.swp
*.swo
*~
.DS_Store
# Logs
logs/
*.log
# Testing
.coverage
htmlcov/
.pytest_cache/
.vitest/
# Docker
docker-compose.override.yml
*.pid
# Database backups
*.sql
*.dump
# Temp files
temp/
tmp/
*.tmp
# OS
Thumbs.db
.DS_Store