main.go 324 B

1234567891011121314151617
  1. package main
  2. // Compile with the following to get rid of the cmd pop up on windows
  3. // go build -ldflags="-H windowsgui" .
  4. import (
  5. "os"
  6. "github.com/jmorganca/ollama/app/lifecycle"
  7. )
  8. func main() {
  9. // TODO - remove as we end the early access phase
  10. os.Setenv("OLLAMA_DEBUG", "1") // nolint:errcheck
  11. lifecycle.Run()
  12. }