-
The front-end of Indian Open Source Foundation is bootstrapped with the Create React App utility. To learn about React check out thier officail documentation.
-
For styling we are using Bulma (a free open source CSS framework).
- Fork this Repository.
- Clone your forked repository to your pc.
- Create a new branch for your modifications (ie.
git branch new-user
and check it outgit checkout new-user
andgit checkout -b new-user
.The last command will create a new branch and will automatically checkout you to new branch. - Add your files (
git add -A
), commit (git commit -m "added myself"
) and push (git push origin new-user
). - Create a pull request.
- Star this repository.
- Wait for Pull Request to merge.
- Make sure you have npm or yarn installed.
- Go to the cloned project repo and perform
yarn install
ornpm install
. It will install all the dependencies defined in apackage.json
file. - Atlast, perform a
yarn start
ornpm start
. This will run the app in development mode on localhost port 3000.