🎉 First off, thanks for taking the time to contribute! This project would not be possible without people like you. 🎉
You should have node installed in your system.
-
Fork the repository
-
Clone the repository
git clone https://github.com/<username>/website-www.codeuino.org.gitwhere < username > is your username -
Install create-react-app
npm install -g create-react-app -
cd website-www.codeuino.org -
npm install -
npm start
This will:
- Install all JavaScript dependencies.
You can then access the website at http://localhost:3000.
Did you notice a bug? Do you have a feature request? Please file an issue here on GitHub.
Want to talk about something but can't find a home for it here? Head to our Slack Channel to discuss everything from feedback and ideas to questions and random musings.
- First of all add upstream remote. You can add upstream like
git remote add upstream https://github.com/codeuino/website-www.codeuino.org.git- Now fetch the updated master branch
git fetch upstream- Now merge fetch code to your local branch master
git merge upstream/master