Files
web-cad/README.md
T

27 lines
439 B
Markdown
Raw Normal View History

# Web CAD
2026-06-21 20:34:08 +00:00
Web-based CAD application for event seating plans.
2026-06-21 20:34:08 +00:00
## Setup
2026-06-21 20:34:08 +00:00
1. Install dependencies:
```
2026-06-21 20:34:08 +00:00
cd frontend && npm install
cd ../backend && npm install
```
2. Start the development servers:
```
2026-06-21 20:34:08 +00:00
cd frontend && npm run dev
cd ../backend && npm run dev
2026-06-21 20:34:08 +00:00
```
3. Alternatively, use Docker Compose:
```
docker-compose up
```
2026-06-21 20:34:08 +00:00
## Services
2026-06-21 20:34:08 +00:00
- Frontend: http://localhost:8080
- Backend: http://localhost:3001