Skip to content

The-Codesis/codesis-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codesis Website project was bootstrapped with Create React App.

Getting Started

  1. Goto the codesis-website repository
  2. Click on the Fork button in the upper right corner.
  3. Clone the forked repository on your local machine
git clone https://github.com/<your username>/codesis-website.git
  1. To install the dependencies ,in the project directory you can run:

yarn install

  1. Once the dependencies are installed,run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

Adding Features

  1. Create a branch to do your work.

A good practice is to call the branch in the form of GH- followed by the title of the issue.

git checkout -b GH-issuenumber-title-of-issue
  1. Make necessary changes,and commit those changes.

  2. Push your changes to github

git push -u origin GH-issuenumber-title-of-issue

Pull Request

  • When finished create a pull request from your branch to the main codesis-website repository.

  • When making a pull request use Closes #(issue_number) in the description of your PR, so that GitHub automatically associates your PR with that issue.

  • In the description of your PR, mention what bug or feature this provides. Give any relevant information, that you think maintainer should know like :

  • Tests you did to check your new PR or code

  • Your approach to the problem

  • Any other relevant information that you think one might keep in mind for future

Make it clear,complete and simple so your PR gets merged easily !