Initial commit

This commit is contained in:
Miguel de la Cruz 2023-06-29 18:55:13 +02:00
commit c67f81327d
4 changed files with 33 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

12
README.md Normal file
View File

@ -0,0 +1,12 @@
# Birthday bot
A simple bot that notifies of birthdays, posting the contact
information of the subject so you can reach them easily.
## Roadmap
- [ ] Create the bot scaffold
- [ ] Define how to read the birthdays info
- [ ] Create a configurable template to fill with each notification
- [ ] Create different message systems to use with the bot
- [ ] Enjoy!

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.ctrlz.es/mgdelacroix/birthdaybot
go 1.19

17
shell.nix Normal file
View File

@ -0,0 +1,17 @@
with import <nixpkgs> {};
mkShell {
buildInputs = [
go_1_20
gotestsum
gnumake
modd
];
shellHook = ''
echo '
'
'';
}