Dagger
Search

presentation

No long description provided.

Installation

dagger install github.com/camptocamp/daggerverse/presentation@ca4521be520700d7a8496c20c7bccafe2013d400

Entrypoint

Return Type
Presentation !
Example
func (m *myModule) example() *Presentation  {
	return dag.
			Presentation()
}
@function
def example() -> dag.Presentation:
	return (
		dag.presentation()
	)
@func()
example(): Presentation {
	return dag
		.presentation()
}

Types

Presentation

init()

Return Type
Directory !
Example
dagger -m github.com/camptocamp/daggerverse/presentation@ca4521be520700d7a8496c20c7bccafe2013d400 call \
 init
func (m *myModule) example() *Directory  {
	return dag.
			Presentation().
			Init()
}
@function
def example() -> dagger.Directory:
	return (
		dag.presentation()
		.init()
	)
@func()
example(): Directory {
	return dag
		.presentation()
		.init()
}

builder()

Return Type
Builder !
Arguments
NameTypeDefault ValueDescription
directoryDirectory !-No description provided
npmrcSecret !-No description provided
Example
dagger -m github.com/camptocamp/daggerverse/presentation@ca4521be520700d7a8496c20c7bccafe2013d400 call \
 builder --directory DIR_PATH --npmrc env:MYSECRET \
 container
func (m *myModule) example(directory *Directory, npmrc *Secret) *PresentationBuilder  {
	return dag.
			Presentation().
			Builder(directory, npmrc)
}
@function
def example(directory: dagger.Directory, npmrc: dagger.Secret) -> dag.PresentationBuilder:
	return (
		dag.presentation()
		.builder(directory, npmrc)
	)
@func()
example(directory: Directory, npmrc: Secret): PresentationBuilder {
	return dag
		.presentation()
		.builder(directory, npmrc)
}

Builder

container()

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

build()

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

Build

directory()

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

container()

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

server()

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