Add example config file
This commit is contained in:
parent
af92353a89
commit
0b0e91928d
4 changed files with 12 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
dist
|
4
Makefile
4
Makefile
|
@ -1,3 +1,7 @@
|
||||||
|
build:
|
||||||
|
mkdir -p dist
|
||||||
|
go build -o dist ./...
|
||||||
|
|
||||||
test:
|
test:
|
||||||
GOTESTSUM_FORMAT=testname gotestsum --packages="./..."
|
GOTESTSUM_FORMAT=testname gotestsum --packages="./..."
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,11 @@
|
||||||
A simple bot that notifies of birthdays, posting the contact
|
A simple bot that notifies of birthdays, posting the contact
|
||||||
information of the subject so you can reach them easily.
|
information of the subject so you can reach them easily.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
There is an [example configuration file](./example-config.yml) that
|
||||||
|
can be used as a base to create your own configuration.
|
||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
|
||||||
- [ ] Create the bot scaffold
|
- [ ] Create the bot scaffold
|
||||||
|
|
2
example-config.yml
Normal file
2
example-config.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
birthday_file: birthdays.csv
|
Loading…
Reference in a new issue