initial commit

This commit is contained in:
2025-08-28 14:24:06 +00:00
commit 2105518e85
53 changed files with 11236 additions and 0 deletions

15
Readme.md Normal file
View File

@@ -0,0 +1,15 @@
# Bacchus 🍷
WG-Getränke-Buchungssystem
## Start ohne Docker
### Voraussetzungen
- Rust (stable)
- Node.js (LTS)
- PostgreSQL installiert und läuft lokal auf Port 5432
- sqlx-cli (`cargo install sqlx-cli --no-default-features --features rustls,postgres`)
### Datenbank anlegen
```bash
psql -U postgres -c "CREATE USER bacchus WITH PASSWORD 'bacchus';"
psql -U postgres -c "CREATE DATABASE bacchus OWNER bacchus;"