====== globnotes ====== Aplicación web para tomar notas. Guarda todo en ficheros [[..:..:markdown|Markdown]] y no emplea base de datos. Programado en [[..:..:programacion:python|Python]] para el backend. Derivado de [[flatnotes|flatnotes]]. * [[https://github.com/alexindigo/globnotes|Repositorio de código]] {{ https://raw.githubusercontent.com/alexindigo/globnotes/refs/heads/main/client/assets/screenshot.png |}} ===== Instalación ===== ==== Docker ==== Ejemplo de Docker Compose: services: globnotes: image: ghcr.io/alexindigo/globnotes:latest container_name: globnotes restart: unless-stopped ports: - "8080:8080" volumes: - ./notes:/data # Optional: mount additional sources as subdirectories # - /srv/dad-notes:/data/dad # - /srv/mom-notes:/data/mom environment: # Optional. Leave unset for the first-run setup wizard, or choose # explicitly: # GLOBNOTES_AUTH_TYPE: "none" # trusted home network only! # GLOBNOTES_AUTH_TYPE: "password" # GLOBNOTES_USERNAME: "admin" # GLOBNOTES_PASSWORD: "change-me" # GLOBNOTES_SECRET_KEY: "change-me-to-a-long-random-string" TZ: "UTC"