This project was created for purpose of my presentation Datadog and Elixir for EMPEX LA conference
I present how to integrate your Elixir application with Datadog The application is based on Phoenix, Ecto and Absinthe frameworks.
Setup Postgres in docker:
$ docker run --name empex -p 5432:5432 -e POSTGRES_PASSWORD=postgres -d postgres
Setup ecto:
$ mix deps.get
$ mix ecto.create
$ mix ecto.migrate
Run application:
$ mix phx.server
From now on, you can navigate to http://localhost:4000/graphiql and send Graphql queries
Remeber to run backend first in another session (previous section). Then, run:
$ cd angular-front
$ npm install
$ ng serve
and navigate to http://localhost:4200/ Now you can create and remove recipes using dashboard