EventZ is an event management platform that allows users to browse and purchase tickets for various events. Users can print their tickets upon successful purchase. The platform also includes an admin interface to manage events and tickets, offering full CRUD (Create, Read, Update, Delete) functionalities. Additional features include user registration, login, and role-based access control.
The primary goal of EventZ is to provide users with an intuitive platform for discovering and purchasing tickets for events. Once the ticket purchase is complete, users can print their tickets. Admins can manage event details and ticket inventory through a secure, role-based dashboard.
- Event Browsing: Users can explore available events.
- Ticket Purchase: Secure purchase system for event tickets.
- Print Tickets: Users can print their purchased tickets.
- User Authentication: Users can register, log in, and manage their accounts.
- CRUD for Events: Admins can create, update, delete, and view event details.
- Ticket Management: Admins can manage ticket sales and inventory.
- User Management: Admins can view and manage users registered on the platform.
- Frontend: Angular (Version X)
- Backend: .NET Core (API under development)
- Database: PostgreSQL
- Mock Server: Postman Mock Servers (For initial API development)
- Node.js (v14.x or later)
- Angular CLI (v17.x or later)
- .NET Core SDK (v8.x or later)
- Postman (For API mocks)
git clone https://github.com/yourusername/eventz.git
cd eventz
For the Angular Frontend:
cd frontend
npm install
For the .NET Backend (API under development):
cd backend
dotnet restore
ng serve
Open your browser and navigate to http://localhost:4200
.
cd backend
dotnet run
Since the API is under development, we will be using Postman Mock Servers to simulate API responses. The mock server provides endpoints for user login, event listing, ticket purchase, and admin CRUD operations.
- Download and install Postman if you haven't already.
- Import the Postman collection provided in this repo (
postman_collection.json
). - Start the mock server by selecting the collection and choosing "Mock Server."
- Replace the base URLs in your Angular services with the mock server's URL until the API is ready.
We welcome contributions to EventZ. Please follow these steps:
- Fork the repository.
- Create a feature branch (
git checkout -b feature-branch
). - Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.
This project is licensed under the MIT License.