Remove outdated documentation files

- Deleted `I18N_IMPLEMENTATION_PLAN.md` and `PROJECT_PROGRESS.md` to declutter the repository.
- These documents were finalized, no longer relevant, and superseded by implemented features and external references.
This commit is contained in:
Felipe Cardoso
2025-11-27 18:55:29 +01:00
parent 77ed190310
commit 29074f26a6
20 changed files with 95 additions and 5566 deletions

View File

@@ -90,22 +90,18 @@ Ready to write some code? Awesome!
```bash
cd backend
# Setup virtual environment
python -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Install dependencies (uv manages virtual environment automatically)
uv sync
# Setup environment
cp .env.example .env
# Edit .env with your settings
# Run migrations
alembic upgrade head
python migrate.py apply
# Run tests
IS_TEST=True pytest
IS_TEST=True uv run pytest
# Start dev server
uvicorn app.main:app --reload