Initial commit
This commit is contained in:
commit
c67f81327d
4 changed files with 33 additions and 0 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
use nix
|
12
README.md
Normal file
12
README.md
Normal 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
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
module git.ctrlz.es/mgdelacroix/birthdaybot
|
||||||
|
|
||||||
|
go 1.19
|
17
shell.nix
Normal file
17
shell.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
with import <nixpkgs> {};
|
||||||
|
mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
go_1_20
|
||||||
|
gotestsum
|
||||||
|
gnumake
|
||||||
|
modd
|
||||||
|
];
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
echo '
|
||||||
|
╔═ ╝╔═║═╔╝║ ║╔═ ╔═║║ ║╔═ ╔═║═╔╝
|
||||||
|
╔═║║╔╔╝ ║ ╔═║║ ║╔═║═╔╝╔═║║ ║ ║
|
||||||
|
══ ╝╝ ╝ ╝ ╝ ╝══ ╝ ╝ ╝ ══ ══╝ ╝
|
||||||
|
'
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue