This is a tool meant to be used for supporting communication and logging of informations during an incident.
You will need to provide a slack token.
you can add it by creating these three files
/apps/incident_bridge/dev.secret.exs
use Mix.Config
# Configure your database
config :incident_bridge, IncidentBridge.Repo,
username: "postgres",
password: "postgres",
database: "incident_bridge_dev",
hostname: "localhost",
pool_size: 10
/apps/incident_bridge/test.secret.exs
use Mix.Config
# Configure your database
config :incident_bridge, IncidentBridge.Repo,
username: "postgres",
password: "postgres",
database: "incident_bridge_dev",
hostname: "localhost",
pool_size: 10
/apps/incident_bridge/slack_bot_token.toml
slack_bot_token = "your_bot_token"
slack_oauth_token = "your_oauth_token"
use Mix.Config
# Configure your database
config :incident_bridge, IncidentBridge.Repo,
username: "postgres",
password: "postgres",
database: "incident_bridge_dev",
hostname: "localhost",
pool_size: 10
You can then generate the db
mix ecto.create
mix ecto.migrate
and then you can run the app with
iex -S mix phx.server