
- Navigate to the
serverfolder:cd server - Install dependencies:
npm install - Create a
.envfile in theserverfolder and configure environment variables:MONGO_URL,JWT_SECRETandPORT
- Start the server:
node index.js - The server will be running on
PORT.
- Navigate to the
clientfolder:cd client - Install dependencies:
npm install - Create a
.envfile in theclientfolder and configure environment variable:REACT_APP_API_KEY(Backend URL)
- Start the client:
npm start - The client application will be accessible in your browser.
Both the server and client may require specific environment variables to function correctly.
If you would like to contribute to this project, please follow these steps:
- Fork the repository
- Create a new branch:
git checkout -b my-feature - Make your changes and commit them:
git commit -m 'Add some feature' - Push to the branch:
git push origin my-feature - Submit a pull request