Dagger
Search

presentation

No long description provided.

Installation

dagger install github.com/camptocamp/daggerverse/presentation@8c4dda2049d2d4204256a6b4f4c77bcef52233d3

Entrypoint

Return Type
Presentation !
Arguments
NameTypeDescription
directoryDirectory !No description provided
npmrcSecret !No description provided
Example
func (m *myModule) example(directory *Directory, npmrc *Secret) *Presentation  {
	return dag.
			Presentation(directory, npmrc)
}
@function
def example(directory: dagger.Directory, npmrc: dagger.Secret) -> dag.Presentation:
	return (
		dag.presentation(directory, npmrc)
	)
@func()
example(directory: Directory, npmrc: Secret): Presentation {
	return dag
		.presentation(directory, npmrc)
}

Types

Presentation 🔗

init() 🔗

Return Type
Directory !
Example
dagger -m github.com/camptocamp/daggerverse/presentation@8c4dda2049d2d4204256a6b4f4c77bcef52233d3 call \
 --directory DIR_PATH --npmrc env:MYSECRET init
func (m *myModule) example(directory *Directory, npmrc *Secret) *Directory  {
	return dag.
			Presentation(directory, npmrc).
			Init()
}
@function
def example(directory: dagger.Directory, npmrc: dagger.Secret) -> dagger.Directory:
	return (
		dag.presentation(directory, npmrc)
		.init()
	)
@func()
example(directory: Directory, npmrc: Secret): Directory {
	return dag
		.presentation(directory, npmrc)
		.init()
}

builder() 🔗

Return Type
Container !
Example
dagger -m github.com/camptocamp/daggerverse/presentation@8c4dda2049d2d4204256a6b4f4c77bcef52233d3 call \
 --directory DIR_PATH --npmrc env:MYSECRET builder
func (m *myModule) example(directory *Directory, npmrc *Secret) *Container  {
	return dag.
			Presentation(directory, npmrc).
			Builder()
}
@function
def example(directory: dagger.Directory, npmrc: dagger.Secret) -> dagger.Container:
	return (
		dag.presentation(directory, npmrc)
		.builder()
	)
@func()
example(directory: Directory, npmrc: Secret): Container {
	return dag
		.presentation(directory, npmrc)
		.builder()
}

build() 🔗

Return Type
Directory !
Example
dagger -m github.com/camptocamp/daggerverse/presentation@8c4dda2049d2d4204256a6b4f4c77bcef52233d3 call \
 --directory DIR_PATH --npmrc env:MYSECRET build
func (m *myModule) example(directory *Directory, npmrc *Secret) *Directory  {
	return dag.
			Presentation(directory, npmrc).
			Build()
}
@function
def example(directory: dagger.Directory, npmrc: dagger.Secret) -> dagger.Directory:
	return (
		dag.presentation(directory, npmrc)
		.build()
	)
@func()
example(directory: Directory, npmrc: Secret): Directory {
	return dag
		.presentation(directory, npmrc)
		.build()
}

server() 🔗

Return Type
Service !
Example
dagger -m github.com/camptocamp/daggerverse/presentation@8c4dda2049d2d4204256a6b4f4c77bcef52233d3 call \
 --directory DIR_PATH --npmrc env:MYSECRET server
func (m *myModule) example(directory *Directory, npmrc *Secret) *Service  {
	return dag.
			Presentation(directory, npmrc).
			Server()
}
@function
def example(directory: dagger.Directory, npmrc: dagger.Secret) -> dagger.Service:
	return (
		dag.presentation(directory, npmrc)
		.server()
	)
@func()
example(directory: Directory, npmrc: Secret): Service {
	return dag
		.presentation(directory, npmrc)
		.server()
}