Warning: This is WIP project.
The API is written in Elixir language and uses Phoenix Web Framework.
- Install Elixir.
- Install Postgresql.
To start application you have to:
- Install dependencies with
mix deps.get
- You can change your postgres configuration at
lib\devcon\repo.ex
- Do database migrations with
mix ecto.migrate Repo
- Start Phoenix router with
mix phoenix.start
Now you can visit localhost:4000
from your browser. List all available commands with mix help
- If you choose to change the application's structure, you could manually start the router from your code like this
Devcon.Router.start
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request