all repos — cameraman @ 06f88241479fce982da0c92b260b8459fd6a7dbf

README.md (view raw)

 1# Cameraman
 2A simple calendar to remind yourself about yearly occurrences. It can send notifications via Telegram API.
 3
 4## Instructions
 5
 6First of all, you should set your Telegram parameters if you want notifications (you probably do).
 7```
 8cp .env.example .env
 9nano .env
10```
11
12### Docker
13If you want to use the latest image, just do:
14```
15docker-compose up -d
16```
17
18Otherwise, you can build it yourself:
19```
20docker-compose up -d --build
21```
22
23### Test and debug locally
24```
25go test -v ./...
26go run .
27```