Documentation
¶
Overview ¶
Package project defines project-root file constants outside the .context/ directory.
Index ¶
Constants ¶
View Source
const ( // DirInternal is the conventional Go internal packages directory. DirInternal = "internal" // DirInternalSlash is DirInternal with a trailing slash for path // prefix matching in Markdown content. DirInternalSlash = DirInternal + "/" )
Go project directory constants.
View Source
const ( // ImplementationPlan is the high-level project direction file. ImplementationPlan = "IMPLEMENTATION_PLAN.md" // Makefile is the user's project Makefile. Makefile = "Makefile" // MakefileCtx is the ctx-owned Makefile include for project root. MakefileCtx = "Makefile.ctx" // MakefileIncludeDirective is the Make line that pulls in ctx targets. // The leading dash suppresses errors when the file is absent. MakefileIncludeDirective = "-include Makefile.ctx" // GettingStarted is the quick-start reference file written during init. GettingStarted = "GETTING_STARTED.md" )
Project-root file constants (not inside .context/).
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.