Skip to content
This repository was archived by the owner on Dec 1, 2019. It is now read-only.

LivewareProblems/incident-bridge

Repository files navigation

IncidentBridge

This is a tool meant to be used for supporting communication and logging of informations during an incident.

Installation

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

About

A tool to help during incidents

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published