(Windows)
- Clone the repository in your chosen directory by opening CMD and typing "git clone https://github.com/castilloglenn/events-app"
- Move to the app directory by typing "cd events-app"
- Create two terminals
- On the first terminal, type "cd server" and press Enter
- Create a new virtual environment by typing "python -m venv venv" and press Enter
- Then activate the virtual environment by typing "venv\scripts\activate" and press Enter
- (Optional) Update PIP by typing "python -m pip install --upgrade pip"
- Install the dependencies by typing "pip install -r requirements.txt" and press Enter
- Start the backend server by typing "python server.py" and press Enter
- On the second terminal, type "cd client" and press Enter
- Download and install npm dependencies by typing "npm install" and press Enter
- Type "npm start" to boot up React's frontend server
- The backend listens to port 8080 whilst the frontend will create a new tab automatically in the port 3000.
- Enjoy!