No description
Find a file
2025-10-28 12:06:05 +00:00
cmd cmd: core dev api sync - will update the root level go files to reflect the public API's of Core.* 2025-10-28 12:06:05 +00:00
config Add options type to Config service and improve type assignment error handling; add unit tests for Config functionality 2025-10-28 11:09:38 +00:00
crypt Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
display Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
docs Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
help Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
i18n Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
io Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
pkg Add options type to Config service and improve type assignment error handling; add unit tests for Config functionality 2025-10-28 11:09:38 +00:00
workspace Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
.coderabbit.yaml Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
.gitignore Refactor project structure and add core modules for configuration, cryptography, display, and workspace management 2025-10-28 07:02:21 +00:00
AGENTS.md Refactor project structure and add core modules for configuration, cryptography, display, and workspace management 2025-10-28 07:02:21 +00:00
core.go Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
core_test.go Add options type to Config service and improve type assignment error handling; add unit tests for Config functionality 2025-10-28 11:09:38 +00:00
go.mod Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
go.sum Add documentation for Core modules: Config, Crypt, Display, Docs, IO, and Workspace (#3) 2025-10-27 03:14:50 +00:00
go.work Refactor project structure and add core modules for configuration, cryptography, display, and workspace management 2025-10-28 07:02:21 +00:00
go.work.sum Add an initial CLI framework for Core 2025-10-27 05:07:22 +00:00
LICENSE.txt Add initial project structure with core functionality and basic files 2025-10-24 04:55:10 +01:00
Makefile Add pre-commit task, CLI enhancements, and ATS updates 2025-10-27 05:41:11 +00:00
README.md Adding documentation checkpoint. 2025-10-25 09:24:50 +01:00

Core

Core is an opinionated Go framework for building desktop apps with Wails. It provides a small set of focused modules:

  • Core — framework bootstrap and service container
  • Core.Config — app and UI state persistence
  • Core.Crypt — keys, encrypt/decrypt, sign/verify
  • Core.Display — windows, tray, window state
  • Core.Docs — inapp help and deeplinks
  • Core.IO — local/remote filesystem helpers
  • Core.Workspace — projects and paths

Help: https://Core.Help
Web: https://dAppCo.re
Repo: https://github.com/Snider/Core

Quick start

import core "github.com/Snider/Core"

app := core.New(
  core.WithServiceLock(),
)

Docs (MkDocs)

The help site and inapp docs are built with MkDocs Material and live under pkg/v1/core/docs.

  • Live preview: from pkg/v1/core/docs run
    • pip install -r requirements.txt
    • mkdocs serve -o -c (or task dev if you use Task)
  • Build static site: mkdocs build --clean -d public (or task build)

The demo app embeds the built docs from public/ and can open specific sections in new windows using stable, short headings.