✨ Changements majeurs: - Suppression complète du code Flask legacy - Migration backend FastAPI vers racine /backend - Migration frontend Vue.js vers racine /frontend - Suppression de notytex-v2/ (code monté à la racine) ✅ Validations: - Backend démarre correctement (port 8000) - API /api/v2/health répond healthy - 99/99 tests unitaires passent - Frontend configuré avec proxy Vite 📝 Documentation: - README.md réécrit pour v2 - Instructions de démarrage mises à jour - .gitignore adapté pour backend/frontend/ 🎯 Architecture finale: notytex/ ├── backend/ # FastAPI + SQLAlchemy + Pydantic ├── frontend/ # Vue 3 + Vite + TailwindCSS ├── docs/ # Documentation └── school_management.db # Base de données (inchangée) Jalon 6 complété: Application v2 prête pour utilisation!
84 lines
895 B
Plaintext
84 lines
895 B
Plaintext
# 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
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
school_management.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# UV
|
|
.uv/
|
|
|
|
# Backend FastAPI
|
|
backend/__pycache__/
|
|
backend/.pytest_cache/
|
|
backend/api/__pycache__/
|
|
backend/infrastructure/__pycache__/
|
|
backend/domain/__pycache__/
|
|
backend/schemas/__pycache__/
|
|
backend/core/__pycache__/
|
|
backend/*.pyc
|
|
backend/.env
|
|
backend/.coverage
|
|
backend/htmlcov/
|
|
|
|
# Frontend Vue.js
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.env.local
|
|
frontend/.env.*.local
|
|
frontend/.vite/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Tests
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Flask legacy
|
|
instance/
|
|
.webassets-cache |