Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 746 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 746 Bytes

Velocity

Running the Project

Docker

If this is your first time starting the API, you will also need to create/seed a local database:

  • docker-compose run web mix ecto.setup

  • docker-compose up

Local Elixir Deps

Install ASDF and add elixir plugin:

Run these commands to get the dependencies set up:

  • asdf install
  • docker-compose up -d db
  • mix deps.get

If this is your first time starting the API, you will also need to create/seed a local database:

  • mix ecto.setup

install and start redis (caching engine):

  • brew install redis
  • brew services start redis

Start the phoenix server:

  • mix phx.server