Document the db_path config variable #8

Merged
isthisnagee merged 3 commits from issues/6-config-documentation into main 3 years ago

@ -6,3 +6,33 @@
``` ```
go install git.nagee.dev/isthisnagee/diary@v0.0.1 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"
```

@ -39,24 +39,22 @@ func initConfig() Cfg {
// Use config file from the flag. // Use config file from the flag.
viper.SetConfigFile(cfgFile) viper.SetConfigFile(cfgFile)
} else { } else {
viper.AddConfigPath(path.Join(home, ".config", "diary"))
// Search config in home directory with name ".diary" (without extension).
viper.AddConfigPath(home)
viper.SetConfigType("toml") viper.SetConfigType("toml")
viper.SetConfigName(".diary") viper.SetConfigName("diary.toml")
} }
var db_path = path.Join(home, ".diary.sql") if viper.Get("db_path") == nil {
viper.SetDefault("db_path", db_path) var db_path = path.Join(home, ".diary.sql")
viper.SetDefault("db_path", db_path)
}
viper.AutomaticEnv() // read in environment variables that match viper.AutomaticEnv() // read in environment variables that match
// If a config file is found, read it in. err = viper.ReadInConfig()
if err := viper.ReadInConfig(); err == nil { cobra.CheckErr(err)
fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed())
}
return Cfg{db_path} return Cfg{viper.GetString("db_path")}
} }
func InitApp() { func InitApp() {
@ -64,13 +62,13 @@ func InitApp() {
if _, err := os.Stat(cfg.DbPath); errors.Is(err, os.ErrNotExist) { if _, err := os.Stat(cfg.DbPath); errors.Is(err, os.ErrNotExist) {
_, err := os.Create(cfg.DbPath) _, err := os.Create(cfg.DbPath)
if err != nil { cobra.CheckErr(err)
log.Fatal(err.Error())
}
} }
var app = model.NewApp(cfg.DbPath) var app, err = model.NewApp(cfg.DbPath)
App = &TApp{&app, &cfg} cobra.CheckErr(err)
App = &TApp{app, &cfg}
} }
var fmt_str = "%-10s %-20s %s\n" var fmt_str = "%-10s %-20s %s\n"

@ -20,12 +20,12 @@ type App struct {
*db.DbCtx *db.DbCtx
} }
func NewApp(db_path string) App { func NewApp(db_path string) (*App, error) {
app, err := db.Init(db_path) app, err := db.Init(db_path)
if err != nil { if err != nil {
log.Fatal(err.Error()) return nil, err
} }
return App{app} return &App{app}, nil
} }

Loading…
Cancel
Save