Description A brief description of the project, its purpose, and features.
- Node.js: Make sure you have Node.js installed. You can download it here.
- MongoDB Atlas: Set up a MongoDB Atlas account and create a database. Get your connection string (MONGODB_URI).
- Redis: Make sure Redis is installed and running. If using Docker, expose port
6379.
- Navigate to the server directory:
cd server- Create a .env file and add your MongoDB connection string as:
MONGODB_URI=<your_mongodb_atlas_connection>
PORT=<any_port_number>- Install Redis locally:
Follow instructions from the official Redis website.
- Running Redis with Docker:
docker run -p 6379:6379 redis- Install server dependencies:
npm install- Start the server:
npm run startThe server should now be running.
- Navigate to the client directory:
cd client- Install client dependencies:
npm install- Start the client:
npm run startThe client should now be running and accessible in your browser.