This project consists of a client-server application.
- Navigate to the
server
folder:cd server
- Install dependencies:
npm install
- Create a
.env
file in theserver
folder and configure environment variables:MONGO_URL
,JWT_SECRET
andPORT
- Start the server:
node index.js
- The server will be running on
PORT
.
- Navigate to the
client
folder:cd client
- Install dependencies:
npm install
- Create a
.env
file in theclient
folder 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