You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
isthisnagee e4886dda7c
Add config for enabling/disabling markdown output
2 years ago
cmd Add config for enabling/disabling markdown output 2 years ago
db this commit hsould be broken up 2 years ago
model go fmt 2 years ago
.gitignore Add diary binary to gitignore 2 years ago
LICENSE Run cobra init 2 years ago
README.md Add documentation for db_path config 2 years ago
go.mod Add config for enabling/disabling markdown output 2 years ago
go.sum Tidy up go.mod 2 years ago
main.go Add config for enabling/disabling markdown output 2 years ago

README.md

diary

Installation

go install git.nagee.dev/isthisnagee/diary@v0.0.1

Configuration

Valid locations for the config file

The config file can be passed to the diary command through a command line arg. For example: diary --config=~/.diary.toml

When there is no config argument, diary looks for the config here:

  • $HOME/.config/diary/diary.toml

Configuration options

db_path

  • Name: db_path
  • Type: String
  • Default: ~/.diary.sql
  • Description: The location of the sqlite database. If the file does not exist, it will be created.
db_path = "path/to/wherever/you/want/the/db/file"