At this moment, the backend is composed of 2 parts:
- Back-end in Elixir which provide API,
- Front-end in Angular which consume API from back-end.
The following tool must be installed on your computer:
- Elixir development environment (see installation here)
- Install dependencies
- Create and migrate your database
- To run the application locally in dev mode, in the config folder, you need to create a file
dev.secret.exs
which will containsuse Mix.Config
mix deps.get
mix ecto.create && mix ecto.migrate
# update the config/dev.secret.exs
Install Node.js dependencies with :
cd assets && yarn install && cd ..
Start Phoenix endpoint with:
mix phx.server
The backend can start with some sample data using:
mix dev
Now you can visit localhost:4000
from your browser.
Commands below will be used for both stacks (backend & workers):
Command | Description |
---|---|
make docker-build |
Build locally a docker image |
make docker-clean |
Remove locally the built docker image |
make docker-push-registry |
Push the locally built docker image |
make up |
Launch both, the back and front end locally http://localhost:4000 |
Some variables are defined to apply a custom setting. These variables are listed here
- Official website: http://www.phoenixframework.org/
- Guides: http://phoenixframework.org/docs/overview
- Docs: https://hexdocs.pm/phoenix
- Mailing list: http://groups.google.com/group/phoenix-talk
- Source: https://github.com/phoenixframework/phoenix