Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flexoid/slack-pivotalbot
https://github.com/flexoid/slack-pivotalbot
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/flexoid/slack-pivotalbot
- Owner: flexoid
- Created: 2016-01-19T22:35:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-04T09:19:22.000Z (almost 5 years ago)
- Last Synced: 2024-10-12T07:42:50.145Z (3 months ago)
- Language: Elixir
- Size: 42 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pivotal Tracker Slack Bot
Slack bot that extracts pivotal tracker story ids from the chat messages and
provides descriptions for them.## Installation
1. Provide app config:
cp config/secrets.exs.example config/secrets.exs
vim config/secrets.exs2. Prepare database:
mix do ecto.create ecto.migrate
3. Run:
iex -S mix
## Release and deploy
### Manual
Prepare release with following command and run it manually:
mix release
rel/pivotal_bot/bin/pivotal_bot foreground
### Docker
Requirements:
* docker
* docker-composePrepare config for docker release:
cp config/docker_secrets.exs.example config/docker_secrets.exs
vim config/docker_secrets.exsThen use provided script to build and deploy containers:
./docker-deploy.sh