Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Architecture

Michael edited this page Jul 19, 2024 · 1 revision

App start requires the following namespaces:

  • cdq.screens
  • cdq.context (link)
  • cdq.effect
  • cdq.entitiy
  • cdq.modifier

It is responsible for setting up the app config and loading the app context/screens.

=> Can I generate this kind of documentation with namespace browser/interactive//

Something like this ??

Where information is hidden and I can expand it , hover gives maybe docstring??

Also can see full overview?

Or I just generate the pngs automatically on deployment ??

(ns cdq.app.start
  (:require gdl
            utils
            cdq)

(def ^:private production-config)
(def ^:private dev-config)
(def ^:private config)

(defn- create-context)

(defn -main)
Clone this wiki locally