An event management web application
- User authentication (sign up, log in, reset password)
- Create, update, and delete events
- RSVP functionality and event reminders
- Notification system for upcoming events
- Event filtering (date, location, category)
- (Optional) Integration with Google Calendar or Apple Calendar
- NodeJS
- Xampp
- GitBash
- Enter git bash
- Change directory to desired path with
cd - Copy and paste with
https://github.com/ReapingHunter/eventually-app.git
- Open XAMPP
- Enable Apache and MySQL
- Enter admin on MySQL
- Import
eventuallydb.sql - Open Git Bash
- Proceed to the repository's backend folder with
cd eventually-app/backend - Install dependencies with
npm ci(if there are warnings, runnpm audit fixif prompted. The backend should still run.) - Run the backend with
node index
- Open Git Bash
- Proceed to repository's frontend folder with
cd eventually-app/frontend - Install dependencies with
npm ci(if there are warnings, runnpm audit fixif prompted. The backend should still run.) - run the frontend with
npm run dev