initial commit

This commit is contained in:
gulimabr
2026-01-28 15:34:58 -03:00
commit 08825bf817
23 changed files with 5251 additions and 0 deletions

28
README.md Normal file
View File

@@ -0,0 +1,28 @@
# TermSearch
Monorepo with a FastAPI backend and React + Tailwind frontend.
## Development
- Backend runs on http://localhost:8000
- Frontend runs on http://localhost:5173
### Docker
Build and start both services:
- `docker compose up --build`
### Local (without Docker)
Backend:
- `cd backend`
- `poetry install`
- `poetry run uvicorn app.main:app --reload`
Frontend:
- `cd frontend`
- `pnpm install`
- `pnpm dev`