The second React Capstone project given by Sidehustle Internship to different React Teams. This here, was developed by Team INFANTRY. With the help of my awesome Team members by collaborating our knowledge and what we learned on the internship program we developed this toure app that helps the user to have a basic knowladge of the place where he or she is traviling to.It gives basic information about where they are going.
- Moses Cheboi
- Kabiawu Abdulwaduud
- Emmanuel Jolugbo
- Zarau Bello baidu
- Isituah Onome
- Naol Dame
- Kayitare Audax
- Marian Yirenkyiwa Larbi
- Sharon Ososanya
- Adeyemi Owolabi
Make sure you have nodejs and yarn installed by running the following command:
node -v
yarn -v
If you do not have node installed, install Nodejs from here
If you do not have yarn install, please run
npm i -g yarn
in your terminal to install it
cd into the CAPSTONE-2- folder, and install the dependencies,
npm install
Run the frontend development server using either of the following commands from the root folder:
npm start
# or
yarn start
Open http://localhost:3000 with your browser to see the result.
-
Fork the central repository, i.e the team's general repository.
-
After forking it will appear in your personal profile, copy the url and open your favorite code editor, add the forked repo to your local machine using the git command - git clone (url of repo you copied) on your terminal.
-
git clone clones a repository into a newly created directory, creates remote-tracking branches for each branch in the cloned repository
-
the upstream is named origin by default
-
-
Create a new branch with a descriptive branch name, using the git command: git checkout -b (branch name) to be able to pull request.
-
After implementation, use the git command -: git add . or git add -A or git add (the file name) to effect changes you've made to the branch
-
Commit your changes with a descriptive commit message, the commit message should give an idea of the feature you worked on, use the git command: git commit -m "commit message"
-
Push changes to your forked repo with the new branch you created using the git command: git push origin your-branch-name
-
Create a pull request to the develop branch of the central repository from your forked repo on github. The button is on the GUI
- Pro tip: It is possible that commits may have been merged to central repository, to avoid conflicts, fetch and merge from the central repo on the GUI, then you can update your local machine by using the command: git pull