Installs ExAthena into your project.
Run once after adding {:ex_athena, "~> 0.1"} to mix.exs, or via Igniter:
mix igniter.install ex_athena
mix ex_athena.installWhat it does
- Writes a
config :ex_athena, default_provider: :ollamadefault toconfig/config.exs(only if no default is already configured). - Writes sensible per-provider defaults for Ollama (base URL pointing at
http://localhost:11434), OpenAI-compatible (https://api.openai.com/v1), and Claude (picks upANTHROPIC_API_KEYfrom env). - Does NOT write API keys inline — the installer uses
{:system, "VAR"}tuples so secrets stay in the environment.
Idempotent: re-running preserves whatever you've already set.