Dagger
Search

frontend

No long description provided.

Installation

dagger install github.com/kpenfound/greetings-api/ci/frontend@502ef5eb08550c394088512ef2b11acbf668e163

Entrypoint

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

Types

Frontend 🔗

unitTest() 🔗

Test the frontend

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(ctx context.Context, source *Directory) string  {
	return dag.
			Frontend().
			UnitTest(ctx, source)
}
@function
async def example(source: dagger.Directory) -> str:
	return await (
		dag.frontend()
		.unit_test(source)
	)
@func()
async example(source: Directory): Promise<string> {
	return dag
		.frontend()
		.unitTest(source)
}

build() 🔗

Build the frontend hugo static site

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
envString -+default "dev"
Example
func (m *myModule) example(source *Directory) *Directory  {
	return dag.
			Frontend().
			Build(source)
}
@function
def example(source: dagger.Directory) -> dagger.Directory:
	return (
		dag.frontend()
		.build(source)
	)
@func()
example(source: Directory): Directory {
	return dag
		.frontend()
		.build(source)
}

lint() 🔗

Lint the frontend Go code

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(ctx context.Context, source *Directory) string  {
	return dag.
			Frontend().
			Lint(ctx, source)
}
@function
async def example(source: dagger.Directory) -> str:
	return await (
		dag.frontend()
		.lint(source)
	)
@func()
async example(source: Directory): Promise<string> {
	return dag
		.frontend()
		.lint(source)
}

serve() 🔗

Get a service to run the frontend webservice

Return Type
Service !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(source *Directory) *Service  {
	return dag.
			Frontend().
			Serve(source)
}
@function
def example(source: dagger.Directory) -> dagger.Service:
	return (
		dag.frontend()
		.serve(source)
	)
@func()
example(source: Directory): Service {
	return dag
		.frontend()
		.serve(source)
}