To setup your development environment you will need yarn
. Once you have yarn
, run yarn install
.
The easiest way to view the application is using Docker.
- Run
docker-compose up
- Visit
localhost:4567
- Make your changes.
- Refresh the page and the changes should be visible.
- If you make any structural changes you might have to rebuild. Stop the process with
Ctrl-C
and rundocker-compose up --build
.
We welcome contributions!
We follow the standards put forth by Conventional Commits.
<type>[optional scope]: <description>
[optional body]
[optional footer]
Example:
fix: minor typos in code
see the issue for details on the typos fixed
fixes #12
- Clone this repository.
- Open an issue explaining what you want to contribute.
- Create a branch off
master
with format<issue number>/<small-description>
e.g.1/change-logo
. - Make your changes.
- Commit following the standards put forth by Conventional Commits.
- Send a pull request to
master
.
- Fork this repository.
- Open an issue in our repository explaining what you want to contribute.
- Make your changes on your fork.
- Commit following the standards put forth by Conventional Commits.
- Send a pull request to our
master
branch.
Publishing happens automatically when changes are merged to master.