- Pranav Ajith
- Kancharla Kiranmai
- B Niranjan (bn-nb)
- Anish Dixit
- Ishika Saini
- Aditya Abhiram Uppuluri
Before running the project, make sure the following are installed:
- Go - For the backend
- React - For the frontend
- Node Package Manager (npm) - For managing React dependencies
- Make Command (Optional) - Useful for running many executables in a single command
You have two options for running the project:
Open Command Prompt / PowerShell and run:
git clone https://github.com/pranavajith/SIH-Samvidha
cd SIH-Samvidha
make run
- Clone the monorepo
git clone https://github.com/pranavajith/SIH-Samvidha
- Create 2 Command Prompt / PowerShell instances inside 'SIH-Samvidha' folder. (Optional: Rename them to 'Backend Local Deployment' and 'Frontend Local Deployment' for reference) Run these independently in each.
make run-backend
make run-frontend
- Open a Command Prompt instance at Project Root and run:
cd backend && go mod tidy && go run main.go types.go server.go userHandler.go lobbyHandler.go
- Open another Command Prompt instance at Project Root and run:
cd frontend && npm install && npm start