Skip to content

v0.1.6

Choose a tag to compare

@jonasbg jonasbg released this 04 Sep 05:49
05c0e68

Goophy v0.1.6 – Release Notes

TL;DR

  • Full‑featured .env support via a new internal/env package and sample example.env.
  • License: Copyright updated to Norsk Helsenett SF (NHN).
  • Several internal clean‑ups, logging improvements, and better error handling in the proxy and updater.
  • Updated README with clearer usage, Docker command, and build/run examples.

Using the New .env Support in Goophy

Goophy now ships with a tiny internal/env package that makes loading environment
variables from a file (or the default .env) trivial.

# Use the default .env (no flag needed)
goophy serve

# Use a custom file
goophy --env-file .env serve

# Env variables takes precidense over the file
OLLAMA_ENDPOINT=http://localhost:11434 goophy --env-file .env serve