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.
17 lines
298 B
17 lines
298 B
3 weeks ago
|
package store
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
func getStorePath() string {
|
||
|
if os.Geteuid() == 0 {
|
||
|
// TODO where should we store this on linux for system-wide operation?
|
||
|
return "/etc/ollama/config.json"
|
||
|
}
|
||
|
|
||
|
home := os.Getenv("HOME")
|
||
|
return filepath.Join(home, ".ollama", "config.json")
|
||
|
}
|