Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.11 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.11 KB

TODO app CLI using Go

Pre-requisites

Run the App

go run *.go

About the App

The application allows you to create your todo list using CLI

Available commands

Command Description
help output all the available commands
create create a new todo
done mark a todo as completed
email send email with your todo list to a specified email

Set up SMTP

To send emails, you can use any SMTP server you like. I recommend using the Gmail SMTP, but make sure to read the Guide from Google first.

All the SMTP configuration is done via the .env file

  • Rename the .env-example to .env
  • Specify the credentials to your SMTP server

That's it, no more configuration is needed to send the emails

Roadmap

  • Add email notifications about the items in the todo list
  • Add priorities