Initial microservices setup from artifacts

This commit is contained in:
Urtzi Alfaro
2025-07-17 13:09:24 +02:00
commit 347ff51bd7
200 changed files with 9559 additions and 0 deletions

112
.gitignore vendored Normal file
View File

@@ -0,0 +1,112 @@
# Environment
.env
.env.local
.env.development.local
.env.test.local
.env.production.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
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.hypothesis/
.mypy_cache/
.dmyp.json
dmyp.json
.pyre/
# Virtual Environment
venv/
ENV/
env/
.venv
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
.npm
.eslintcache
.next
out/
build/
dist/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
logs/
*.log
# Database
*.db
*.sqlite
*.sqlite3
# ML Models
*.pkl
*.joblib
*.h5
models/
# Data
data/external/
data/processed/
*.csv
*.xlsx
# Docker
.docker/
# Infrastructure
*.tfstate
*.tfstate.backup
.terraform/
.terraform.lock.hcl
# Kubernetes
kubeconfig
*.yaml.bak
# Monitoring
prometheus_data/
grafana_data/
elasticsearch_data/
# Artifacts (from Claude)
*_service.py
*_libraries.py
*.md
setup_scripts.sh