Skip to content

dwyl/tudo

Repository files navigation

Build Status codecov

Tudo

You will need the following environment variables in your path:

#!/bin/bash

export SECRET_KEY_BASE=<secret_key_base>
export GITHUB_CLIENT_ID=<github_client_id>
export GITHUB_CLIENT_SECRET=<github_client_secret>
export GITHUB_ACCESS_TOKEN=<github_access_token>
export HOOK_ENDPOINT=<hook_endpoint>

To start the app:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.create && mix ecto.migrate
  • Install Node.js dependencies with npm install
  • Seed the database with mix run priv/repo/seeds.exs
  • Start Phoenix endpoint with mix phoenix.server

NB. if you get errors here, please see if this helps: dwyl/learn-phoenix-framework#53

Now you can visit localhost:4000 from your browser.

Learn more