feat: bootstrap OSDB full-stack skeleton (story #01) #1

Merged
julia merged 3 commits from feature/01-bootstrap-the-project into main 2026-06-17 12:45:14 +00:00
Showing only changes of commit 8d03ac3fcc - Show all commits
+23
View File
@@ -0,0 +1,23 @@
# OSDB — Obstsortendatenbank
A full-stack fruit-variety database (Go + Vue 3).
## Features
- Users can view a "Hello, OSDB!" landing page that confirms the backend is reachable via the Vite proxy.
## Quick Start
```bash
cp .env.example .env # set credentials
make dev-db # start Postgres (waits until healthy)
make migrate-up # apply schema migrations
make run-backend # Echo API on :3000
make run-frontend # Vite dev server on :5000
```
## Testing
```bash
make test
```