forked from cardosofelipe/fast-next-template
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user