Dagger
Search

svix

This module allows running Svix for development and testing purposes.

Installation

dagger install github.com/sagikazarmark/daggerverse/svix@bb48123fba8a3f6aa082761ae4c25a4904b07677

Entrypoint

Return Type
Svix !
Arguments
NameTypeDefault ValueDescription
versionString -Version (image tag) to use from the official image repository as a base container.
containerContainer -Custom container to use as a base container. Takes precedence over version.
postgresInterface -Postgres service.
databaseString -Override the database name provided by the Postgres service.
jwtSecretSecret -The JWT secret for authentication. (defaults to a generated secret)
configFile -Svix configuration file.
Example
func (m *myModule) example() *Svix  {
	return dag.
			Svix()
}

Types

Svix 🔗

service() 🔗

Return Type
Service !
Example
func (m *myModule) example() *Service  {
	return dag.
			Svix().
			Service()
}