Skip to content

jaya/flow

Repository files navigation

alt flow

About this project

Flow App was created to create and manager candidates at Jaya.

Access Flow APP

How this project work

Flow - Candidate

Tech

  • Phoenix
  • Elixir
  • Erlang
  • Postgres

Dependencies

  • Test
docker run --name=flow_test -d -p 9000:5432  -e POSTGRES_PASSWORD=sa -e POSTGRES_USER=sa -e POSTGRES_DB=flow_test postgres
  • Dev
docker run --name=flow_dev -d -p 5432:5432  -e POSTGRES_PASSWORD=sa -e POSTGRES_USER=sa -e POSTGRES_DB=flow_dev postgres

Edit etc/hosts

You must edit your hosts' file because google authentication requires a callback domain

sudo echo "127.0.0.1       flowjaya.com" >> etc/hosts

Create schema

mix ecto.create
mix ecto.migrate

To start your Phoenix server:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.setup
  • Start Phoenix endpoint with mix phx.server

Now you can visit localhost:4000 from your browser.

Ready to run in production? Please check our deployment guides.

Learn more