c0de6083a4
- Removed unnecessary entries from .gitignore for cleaner configuration. - Added .gitlab-ci.yml for automated deployment to Sinbad2. - Updated docker-compose.yml to change backend and frontend ports for consistency. - Introduced README.md with comprehensive project documentation and setup instructions. - Created backend and frontend environment configuration files for development and production.
59 lines
650 B
Plaintext
59 lines
650 B
Plaintext
# --- GLOBAL ---
|
|
.env
|
|
*.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
|
|
# --- PYTHON BACKEND ---
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.sqlite3
|
|
*.db
|
|
*.log
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# FastAPI / Uvicorn
|
|
*.pid
|
|
|
|
# Test / type checkers
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# --- NODE FRONTEND ---
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Vite cache
|
|
.vite/
|
|
vite.config.ts.timestamp*
|
|
vite.config.js.timestamp*
|
|
|
|
# --- DOCKER ---
|
|
# Avoid local volumes or generated files
|
|
docker-data/
|
|
postgres_data/
|
|
redis_data/
|
|
|
|
# --- OS / EDITOR ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
.cursorrules |