remindme
is a simple application to set reminders from the CLI that integrates with your system's notification system.
Once the server is running, remindme -s &
, you can schedule reminders with the commands below.
remindme at 2:00 "go to the grocery store"
remindme in 10m "join the call"
To stop the server
$ kill -15 $(cat /tmp/remindme.pid)
The server startup is idempotent. If a new version is compiled or installed, just run remindme -s &
again to start a new process
with the latest binary version.
There are 2 ways to build remindme
.
- Run
make
. - Run
docker build <CONTAINER_REPO_NAME>/remindme:v1.0.0 .
- File Issue with details of the problem, feature request, etc.
- Submit a pull request and include details of what problem or feature the code is solving or implementing.
remindme
source code is available under the BSD 3 clause License.