PESU Sem 3: Mini project for Web Tech.
- Nishant Holla - PES1UG23CS401 Github
- Pranav Hemanth - PES1UG23CS433 Github
- Aneesh Dutt - PES1UG23CS371 Github
- Nagarjun A H - PES1UG23CS375 Github
-
Generate a new ssh key and add it to github Follow this video
-
Clone the repo
git clone git@github.com:nishantHolla/PESU_ClubTools.git
cd PESU_ClubTools
- Install backend dependencies
npm install --prefix ./backend
- Install frontend dependencies
npm install --prefix ./frontend
- Start backend server
cd ./backend
npm run dev
- Start frontend server - Open new terminal and cd into the frontend folder
cd ./frontend
npm run dev
-
Check setup - open http://localhost:5173 in browser and click ping server button
-
To check if you are able to push changes to github, edit this README.md file with some new text (it can be anything). And then push the changes to github
git config --global user.email "change this with your github email id"
git config --global user.name "change this with your github username"
git add README.md
git commit -m "Updated the readme file"
git push origin main