Make sure you have the following installed:
- Node.js
- npm
- Git
You can verify your installations with:
node --version
npm --version
git --versionFollow the steps below to set up Relay locally.
git clone https://github.com/emps725/Relay.git
cd RelayNavigate to the frontend directory:
cd frontend
npm installGo back to the project root and navigate to the backend directory:
cd ../backend
npm installThe project requires environment variables in the backend folder, create the required .env file according to the .env.example provided.
Start the frontend and backend using their respective development commands.
Frontend:
cd frontend
npm run devBackend:
Open another terminal:
cd backend
npm run devRelay/
├── frontend/ # Frontend application
├── backend/ # Backend application
└── README.md
git clone https://github.com/emps725/Relay.git
cd Relay
cd frontend
npm install
cd ../backend
npm installAfter installing the dependencies and configuring the required environment variables, start the frontend and backend development servers.