Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.27 KB

CONTRIBUTING.md

File metadata and controls

54 lines (37 loc) · 1.27 KB

Contributing Guideline

Read the general Contributing guide, and then:

Development

Installing Crystal

We need to install Crystal programming language first. Before installing it, we should install its dependencies.

Ubuntu
$ sudo apt update
$ sudo apt install pkg-config ubuntu-dev-tools

Then, follow this instruction.

Installing Mint dependencies

$ shards install

Building Mint

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