Commit graph

8 commits

Author SHA1 Message Date
fox.cpp
80328b8dee
Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
fox.cpp
c2099391db
Use a different set of default directories for Docker images 2021-03-07 16:54:36 +03:00
fox.cpp
bf188e454f
Move most code from the repo root into subdirectories
The intention is to keep to repo root clean while the list of packages
is slowly growing.

Additionally, a bunch of small (~30 LoC) files in the repo root is
merged into a single maddy.go file, for the same reason.

Most of the internal code is moved into the internal/ directory. Go
toolchain will make it impossible to import these packages from external
applications.

Some packages are renamed and moved into the pkg/ directory in the root.
According to https://github.com/golang-standards/project-layout this is
the de-facto standard to place "library code that's ok to use by
external applications" in.

To clearly define the purpose of top-level directories, README.md files
are added to each.
2019-12-06 01:35:12 +03:00
fox.cpp
b3a09835de
Move all code from cmd/maddy into root package
Build info helpers can be reused by maddyctl.
Same goes for directory configuration.
2019-11-15 19:34:20 +03:00
fox.cpp
35c3b1c792
Restructure code tree
Root package now contains only initialization code and 'dummy' module.

Each module now got its own package. Module packages are grouped by
their main purpose (storage/, target/, auth/, etc). Shared code is
placed in these "group" packages.

Parser for module references in config is moved into config/module.

Code shared by tests (mock modules, etc) is placed in testutils.
2019-09-08 16:06:38 +03:00
fox.cpp
48d17cb1f2
Change default libexecdir value
Most distros use /usr/lib/programname instead of
/usr/libexec/programname.
2019-09-06 21:34:51 +03:00
fox.cpp
2b67435dbf
Fix libexecdir/statedir being empty by default
Issue was caused by move to config.Map for global values, config.Map
sets to these values to empty strings by default.
2019-05-06 02:21:24 +03:00
fox.cpp
6e17ecab31 Change default file locations (#35)
* Change default files location as described in #27

* config: Change default config file name
2019-04-08 19:57:21 +03:00