| 123456789101112131415161718192021222324 |
- ## Directories
- ROOT=$(shell pwd)
- BUILD=homectrl
- DIR_CMD=cmd ### Main applications for this project.
- DIR_INTERNAL=internal ### Private application and library code.
- DIR_PKG=pkg ### Library code that's ok to use by external applications
- DIR_VENDOR=vendor ### Application dependencies, created by go mod vendor,
- DIR_API=api ### OpenAPI/Swagger specs, JSON schema files, protocol definition files.
- DIR_WEB=web ### Web application specific components
- DIR_CONFIGS=configs ### Configuration file templates or default configs.
- DIR_INIT=init ### System init (systemd, upstart, sysv) and process manager/supervisor (runit, supervisord) configs.
- DIR_SCRIPTS=scripts ### Scripts to perform various build, install, analysis, etc operations.
- DIR_BUILD=build ###
- DIR_DEPLOYMENTS=deployments ###
- DIR_TEST=test ###
- DIR_DOC=docs ###
- DIR_TOOLS=tools ###
- DIR_EXAMPLES=examples ###
- DIG_GITHOOKS=githooks ###
- DIR_ASSETS=assets ###
- DIR_WEBSITE=website ###
|