-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Maja Dabcevic edited this page May 5, 2025
·
1 revision
Welcome! This guide helps you set up and run the project locally or with Docker.
Make sure you have the following installed:
| Tool | Version (Recommended) |
|---|---|
| .NET SDK | 9.0+ |
| Node.js + npm | Node 20+, npm 10+ |
| PostgreSQL | 17+ |
| Docker | Latest stable |
| Git | Any |
/backend → ASP.NET Core Web API, class libraries
/frontend → React + Vite frontend
/documentation → Utility, Explanations and Resource files
- Clone the repository
- Move into root and run
docker compose up - Move into /backend
- Open solution in VS
- Run migrations
dotnet ef database update - Move into root and then /db
- Run seed.sql against bartenderdb database
- Move into root and then /frontend
- Run
npm install - Run frontend
npm run dev