Module ModuleTemplate for Dagger
A simple Dagger place the description of the module here
Configuration 🛠️
Through the Dagger CLI, or by using it directly within your module, you can configure the following options:
- ⚙️
ctr
: The container to use as a base container. If not specified, a new container is created. - ⚙️
version
: The version of the Go image to use. Defaults to latest
. - ⚙️
image
: The Go image to use. Defaults to golang:alpine
.
Structure 🏗️
{{.module_name_pkg}} // main module
├── .gitattributes
├── .gitignore
├── LICENSE
├── README.md
├── apis.go
├── cloud.go
├── commands.go
├── common.go
├── config.go
├── dagger.json
├── examples // Sub modules that represent examples of the module's functions with each SDK
│ └── go
│ ├── .gitattributes
│ ├── .gitignore
│ ├── dagger.json
│ ├── go.mod
│ ├── go.sum
│ ├── main.go
│ └── testdata
│ └── common
│ ├── README.md
│ └── test-file.yml
├── go.mod
├── go.sum
├── main.go
└── tests // Sub module that represent tests of the module's functions
├── .gitattributes
├── .gitignore
├── dagger.json
├── go.mod
├── go.sum
├── main.go
└── testdata
└── common
├── README.md
└── test-file.yml
NOTE: This structure comes out of the box if it's generated through Daggy. Just run just create <module-name>
and you'll get the structure.
Features 🎨
Command or functionality | Command | Example | Status |
---|
Add your feature here | run | dagger call <my function> | ✅ |
Using the ModuleTemplate Module 🚀
Place the description of the module here
Usage through the Dagger CLI 🚀
List all the functions available in the module:
cd module-template
dagger develop && dagger functions
Call a function:
dagger call github.com/excoriate/daggerverse/module-template@version <function-name> [arguments]
Testing 🧪
This module includes a testing module that aims to test the functionality of the ModuleTemplate module. The tests are written in Go and can be run using the following command:
just test module-template
Developer Experience 🛠️
If you'd like to contribute, mostly we use Just to automate tasks and Nix to manage the development environment. You can use the following commands to get started:
just init
just golint module-template
just test module-template
just cilocal module-template
Examples (aka Recipes) 🍲
Additionally, this module brings a new Daggerverse functionality that allows to automatically generate the module's documentation using an special (sub) module called {{.module_name_pkg}}/examples/sdk. This module contains a set of examples hat demonstrate how to use the module's functions.
To generate the documentation
It's important to notice that each example function in order to be rendered in the documentation, it must be preprocessed by module's name, in this case (camelCase) module-template
.
NOTE: The just
command entails the use of the Justfile for task automation. If you don't have it, don't worry, you just need Nix to run the tasks using the dev-shell
built-in command: nix develop --impure --extra-experimental-features nix-command --extra-experimental-features flakes