A Git source code management tool written in Elixir.
See the Getting Started guide and the online documentation.
First, ensure you have libgit2 installed on your system:
brew install libgit2
sudo apt-get install libgit2-dev
You will also need Node.js to compile Web assets and PostgreSQL to store your application data.
Clone the latest version of the project:
git clone https://github.com/almightycouch/gitgud.git
Download Hex dependencies and compile everything:
mix deps.get
mix compile
Install all NPM packages required by Webpack to generate Web assets:
npm install --prefix apps/gitgud_web/assets
In order to provide SSH as a Git transport protocol, you must generate a valid SSH public key for the server:
ssh-keygen -m PEM -t rsa -f apps/gitgud/priv/ssh-keys/ssh_host_rsa_key
The last step before running the server is to create and initialise the SQL database:
mix ecto.setup
Finally, start both HTTP (port 4000) and SSH (port 8989) endpoints:
mix phx.server