TicketBlaster is a student project designed to demonstrate our understanding of MERN Full-Stack development.
cd ticketmaster-master
cd frontend
npm install
cd backend
npm install
In the main project directory, change .env.example to .env and insert your mongoDB connection string where instructed.
url: `https://app.ticketmaster.com/discovery/v2/events.json?classificationName=music&dmaId=522&apikey=${process.env.API_KEY}`,
Once dependencies are installed and your .env is configured, you can use the below commands to start the servers:
cd backend
npm start
cd frontend
npm start