-
Clone repository
Fire up your terminal and clone the repository using SSH wherever you might want to on your computer
git clone git@github.com:capitalenumerique/interfaceqc.git
-
Install packages 📦
Navigate into the site’s directory and install packages
cd interfaceqc/ yarn install -
Create a new feature or fix branch
git checkout -b my-feature-branch
-
Start developing 👩💻
Start it up (Never stop, never stop...)
yarn develop
-
Open the code and have fun!🤘
The site is now running at http://localhost:8000!
Edit
src/pages/index.jsto see your site update in real-time!
Whenever possible, try to commit your changes as soon as you have a small piece of code working. We're following conventional commits in order to standardize our commit messages. We're using commitizen with gitmoji as tools to apply those conventions.
-
Commit your changes
yarn commit
-
Once you commit all your changes, now you're ready to push your branch to the remote repository.
git push origin my-feature-branch
-
Go to the repository and make a Pull Request.