Wordle, but in Elixir.
- Clone the repo to your local machine.
- Create a new branch using the following naming structure:
username-task
. (Ex.gspletzer-update-readme
) - Commit and push changes with short, readable message. (Ex.
chore: added instructions to the readme
). Find more information on conventional commits here. - Open a PR on Github once your changes are tested and ready for review.
- PR can be merged to
master
following approval from a fellow contributor.
A key to good development is good testing, so be sure to add new tests for new features and update relevant tests when modifying existing code.
The mix_test_interactive dependency has been added to the repository. This allows tests to run automatically with each save while you work. You can also use it to isolate your testing to for a specific file. If you wish to use this, just run mix deps.get
once you are in your wordex
directory.