Flow App was created to create and manager candidates at Jaya.
- Phoenix
- Elixir
- Erlang
- Postgres
- 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
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.
- Official website: https://www.phoenixframework.org/
- Guides: https://hexdocs.pm/phoenix/overview.html
- Docs: https://hexdocs.pm/phoenix
- Forum: https://elixirforum.com/c/phoenix-forum
- Source: https://github.com/phoenixframework/phoenix