/iosf-website

Primary LanguageJavaScript

Description

  • 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).

Contribute?

  • 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 out git checkout new-user and git 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.

Getting Started

  • Make sure you have npm or yarn installed.
  • Go to the cloned project repo and perform yarn install or npm install. It will install all the dependencies defined in a package.json file.
  • Atlast, perform a yarn start or npm start. This will run the app in development mode on localhost port 3000.