https://github.com/ChristopherPerrault/ticketblaster
TicketBlaster is a student project designed to demonstrate our understanding of MERN Full-Stack development.
(DEMO screenshots below)
The application is not deployed to the web and has no connection to the existing, popular ticket vendor the application's name resembles.
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_CHRIS}`,
`...apikey=${process.env.DEMO_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
frontend: npm install @mui/material @emotion/react @emotion/styled npm install @mui/icons-material npm install --save styled-components npm install --save react-icons npm i react-router-dom
backend: npm install axios
Stashed changes