Add Go/Postgres admin APIs, Angular admin UI, manual build flow, asset uploads, markdown import/export, configurable slug generation, and the Yar reading theme. Exclude local docs and generated development artifacts from version control.
20 lines
400 B
YAML
20 lines
400 B
YAML
database:
|
|
driver: "sqlite"
|
|
sqlite_path: ".osaet/osaet.db"
|
|
postgres_dsn: ""
|
|
|
|
slug:
|
|
provider: "deepseek" # deepseek | local
|
|
|
|
deepseek:
|
|
api_key: ""
|
|
api_key_env: "DEEPSEEK_API_KEY"
|
|
base_url: "https://api.deepseek.com"
|
|
model: "deepseek-v4-pro"
|
|
|
|
local_llm:
|
|
url: "http://127.0.0.1:11434/api/generate"
|
|
model: "qwen2.5:7b-instruct-q4_K_M"
|
|
temperature: 0.1
|
|
top_p: 0.8
|
|
num_predict: 32
|