Read the general Contributing guide, and then:
- Fork it (https://github.com/mint-lang/mint/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
We need to install Crystal programming language first. Before installing it, we should install its dependencies.
$ sudo apt update
$ sudo apt install pkg-config ubuntu-dev-tools
Then, follow this instruction.
$ shards install
We use Makefile build automation. Before running this command, create a
.bin
directory under your home directory.
$ mkdir ~/.bin
$ make development
After finished, Mint installed as mint-dev
. Don't forget to add ~/.bin
directory to your PATH environment variable. We may use ~/.profile
.
$ echo 'export PATH=$PATH:$HOME/.bin' >> ~/.profile
$ source ~/.profile
$ which mint-dev