Can you please tell me how can I contribute in backend ? #33
-
How should I start with it ? Please give me some details. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sure Check https://github.com/dhairyagothi/StationGuide/blob/baab1ee2074d28a6c92c4765c0a3855e7531cbbc/Learn.md 1. Clone the RepositoryUnderstanding Cloning: Cloning creates a local copy of the project on your computer, allowing you to work on it independently. This local copy is a mirror image of the original repository on GitHub or similar platforms. Use Git to clone this repository into your local development environment: bash After Cloning 3. Running the Development ServerFrontend:
cd frontend
npm run dev This will typically launch the React application on http://localhost:3000 (or the specified port) in your browser. Backend:
cd backend Start the backend development server (typically using nodemon server.js or a similar command): npm run start |
Beta Was this translation helpful? Give feedback.
Sure Check
https://github.com/dhairyagothi/StationGuide/blob/baab1ee2074d28a6c92c4765c0a3855e7531cbbc/contribution.md
https://github.com/dhairyagothi/StationGuide/blob/baab1ee2074d28a6c92c4765c0a3855e7531cbbc/Learn.md
1. Clone the Repository
Understanding Cloning:
Cloning creates a local copy of the project on your computer, allowing you to work on it independently. This local copy is a mirror image of the original repository on GitHub or similar platforms.
Use Git to clone this repository into your local development environment:
bash
git clone https://github.com/dhairyagothi/StationGuide.git
After Cloning
You will see this interface in your system :
3. Running the Development Server
Fro…