Live show management and production software. A full-stack Node.js + Vue application for managing events, artists, and production logistics.
- Event and show management
- User authentication with JWT
- RESTful API backend (Express + MongoDB)
- Vue.js frontend client
express · mongoose · jsonwebtoken · bcrypt · vue-router
eventOS/
├── server.js # Express entry point
├── routes/ # API routes
├── controllers/ # Route handlers
├── models/ # Mongoose schemas
└── client/ # Vue.js frontend
git clone https://github.com/kaltisami/eventOS.git
cd eventOS
npm installCreate a .env file (see .env.example):
PORT=5500
DB_URI=your_mongodb_connection_string
JWT_SECRET=your_jwt_secretnpm run devAPI runs on http://localhost:5500
ISC