Commit Graph

9 Commits

Author SHA1 Message Date
Claude Agent df06dfc5e3 docs: add CONTRIBUTING.md (Phase 5 roadmap item) 2026-06-24 03:04:57 +02:00
flama 4fa7169f24 Merge pull request 'fix(env): clarify WEBUI_AUTH comment in .env.example' (#5) from fix/env-redaction-corruption into main 2026-06-20 15:49:12 +02:00
flama 54cb313948 fix(env): clarify WEBUI_AUTH comment to avoid reading as a setting line
The previous reword still contained a Docker Compose variable reference
(${WEBUI_AUTH:-true}) inside an .env.example comment, which read like
a setting line and could confuse users about what to do with the file.

Replace with a plain instruction: 'Mantener en true.' (just keep it true).
No functional change - comments are not parsed by deploy.sh or compose.
2026-06-20 08:08:12 +02:00
flama 9547e2b7d3 fix: address review blockers from PR #4
Apply the three blockers and one important item identified in the
code review posted on PR #4:

- docker-compose.yml:
  * Pin images to stable tags (ollama 0.11.4, open-webui 0.6.18)
    instead of :latest / :main for reproducibility.
  * Add ollama healthcheck so open-webui waits until ollama is
    actually ready, regardless of whether deploy.sh is used.
  * depends_on now uses the 'service_healthy' condition.

- deploy.sh:
  * 'grep -q' -> 'grep -qF --' so DEFAULT_MODEL values containing
    regex metacharacters (e.g. qwen2.5:7b) match literally.
  * Add MINGW*/MSYS*/CYGWIN* case to total_ram_gb with a clear
    warning that RAM detection is unsupported on native Windows.

- .env.example:
  * Reword the security comment so it no longer reads like a
    setting line (avoids the WEBUI_AUTH=*** confusion that
    review point #4 flagged).

Validation:
- bash -n deploy.sh -> OK
- python yaml.safe_load(compose) -> OK
- All files LF, no CRLF
2026-06-20 06:30:39 +02:00
Claude Agent 9ca770962f fix: align quickstart with d0a1.es ecosystem and current reality
Hardening pass over the quickstart repo to make it match the actual
d0a1.es stack and remove long-standing drift.

- README: align with 8 GB RAM reality across all sections, add
  explicit security warning on WEBUI_AUTH=false, remove dead link
  to d0a1.es/vps, drop stack services not part of d0a1.es
  (n8n, WordPress, Qdrant). Re-point the d0a1 section to the
  services that actually run at git/mail/app.d0a1.es.
- docker-compose: move all tunables (ports, default model, auth,
  secret key, keep-alive) to .env with sensible defaults. Add
  commented GPU passthrough block for NVIDIA hosts.
- deploy.sh: pre-flight checks (docker, compose, daemon),
  copy .env.example on first run, auto-detect system RAM on
  Linux and macOS and warn on sub-8 GB hosts.
- Add .env.example documenting every variable and required RAM
  per model.
- Add MIT LICENSE (was promised in README but missing).
- Add .gitignore (local .env, editor cruft, OS junk).
- .gitattributes: use a single rule (text=auto eol=lf) to cover
  every text file, not just *.sh - fixes CRLF warnings on new
  text files on Windows checkouts.

Refs: d0a1/quickstart rename (companion: new repo at
git.d0a1.es/d0a1/quickstart).
2026-06-20 02:38:55 +02:00
hermes 3d75b77dd7 fix: añadir .gitattributes con eol=lf y troubleshooting CRLF (#1) (#3)
Co-authored-by: Hermes <hermes@d0a1.es>
Co-committed-by: Hermes <hermes@d0a1.es>
2026-06-20 02:02:07 +02:00
monyi dd84d63660 Upgrade Openweb UI
devops/quickstart#2
2026-06-14 01:33:56 +02:00
devops 7bfbb081a7 fix: use git.d0a1.es instead of github.com for clone URL 2026-06-13 23:10:29 +02:00
hermes f2ef809fc8 feat: quickstart stack - Ollama + Open WebUI
- docker-compose.yml: minimal local AI stack
- deploy.sh: automated deployment with Docker/RAM checks
- README.md: landing page with model selection table
2026-06-13 23:03:22 +02:00