https://github.com/moigagoo/fyi
FYI app for Slack
https://github.com/moigagoo/fyi
docs etsy nim slack
Last synced: about 2 months ago
JSON representation
FYI app for Slack
- Host: GitHub
- URL: https://github.com/moigagoo/fyi
- Owner: moigagoo
- License: mit
- Created: 2018-11-09T10:54:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-14T08:12:04.000Z (over 7 years ago)
- Last Synced: 2026-04-04T06:42:21.016Z (3 months ago)
- Topics: docs, etsy, nim, slack
- Language: Nim
- Size: 1.51 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FYI
This is a backend for a Slack app that implements Etsy's immutable docs concept: https://codeascraft.com/2018/10/10/etsys-experiment-with-immutable-documentation/
## Build
```shell
$ nimble build
```
## Run
Set `PG_HOST`, `PG_USER`, `PG_PASSWORD`, and `PG_DB` env vars before running the app.
To run the app, execute the compiled binary:
```shell
$ ./fyi
```
## Docker
```shell
$ docker build -t fyi .
$ docker run -it --rm -e PG_HOST=host -e PG_USER=user -e PG_PASSWORD=password -e PG_DB=db fyi
```