Add 'dis' component

This commit adds a new 'dis' component to the distillery that serves a
list of all known instances for the moment.
This commit is contained in:
Tom Wiesing 2022-09-09 17:10:24 +02:00
parent 35bb95c5ca
commit 4b357476a3
No known key found for this signature in database
43 changed files with 434 additions and 167 deletions

14
core/core.go Normal file
View file

@ -0,0 +1,14 @@
// Package core implements the core of the WissKI Distillery and the wdcli executable.
// It does not depend on any other packages.
package core
// BaseDirectoryDefault is the default deploy directory to load the distillery from.
const BaseDirectoryDefault = "/var/www/deploy"
// Executable is the name of the 'wdcli' executable.
// It should be located inside the deployment directory.
const Executable = "wdcli"
// Config file is the name of the config file.
// It should be located inside the deployment directory.
const ConfigFile = ".env"