demo-react-app
No long description provided.
Installation
dagger install github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753Entrypoint
Return Type
DemoReactApp Example
dagger -m github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753 call \
func (m *MyModule) Example() *dagger.DemoReactApp {
return dag.
DemoReactApp()
}@function
def example() -> dagger.DemoReactApp:
return (
dag.demo_react_app()
)@func()
example(): DemoReactApp {
return dag
.demoReactApp()
}Types
DemoReactApp 🔗
eslint() 🔗
Return Type
Eslint !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | The source directory for the project. |
| baseImageAddress | String | - | The base image to use. |
| packageManager | String | - | The package manager to use. |
Example
dagger -m github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753 call \
eslintfunc (m *MyModule) Example() *dagger.Eslint {
return dag.
DemoReactApp().
Eslint()
}@function
def example() -> dagger.Eslint:
return (
dag.demo_react_app()
.eslint()
)@func()
example(): Eslint {
return dag
.demoReactApp()
.eslint()
}intro() 🔗
An Intro module for Dagger
Return Type
Intro ! Example
dagger -m github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753 call \
introfunc (m *MyModule) Example() *dagger.Intro {
return dag.
DemoReactApp().
Intro()
}@function
def example() -> dagger.Intro:
return (
dag.demo_react_app()
.intro()
)@func()
example(): Intro {
return dag
.demoReactApp()
.intro()
}jest() 🔗
Return Type
Jest !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | The source directory for the project. |
| baseImageAddress | String | - | The base image to use. |
| packageManager | String | - | The package manager to use. |
Example
dagger -m github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753 call \
jestfunc (m *MyModule) Example() *dagger.Jest {
return dag.
DemoReactApp().
Jest()
}@function
def example() -> dagger.Jest:
return (
dag.demo_react_app()
.jest()
)@func()
example(): Jest {
return dag
.demoReactApp()
.jest()
}prettier() 🔗
Return Type
Prettier !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | The source directory for the project. |
| baseImageAddress | String | - | The base image to use. |
| packageManager | String | - | The package manager to use. |
Example
dagger -m github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753 call \
prettierfunc (m *MyModule) Example() *dagger.Prettier {
return dag.
DemoReactApp().
Prettier()
}@function
def example() -> dagger.Prettier:
return (
dag.demo_react_app()
.prettier()
)@func()
example(): Prettier {
return dag
.demoReactApp()
.prettier()
}testSecret() 🔗
A generated module for Test functions
This module has been generated via dagger init and serves as a reference to basic module structure as you get started with Dagger.
Two functions have been pre-created. You can modify, delete, or add to them, as needed. They demonstrate usage of arguments and return types using simple echo and grep commands. The functions can be called from the dagger CLI or from one of the SDKs.
The first line in this comment block is a short description line and the rest is a long description with more detail on the module’s purpose or usage, if appropriate. All modules should have a short description.
Return Type
TestSecret ! Example
dagger -m github.com/kpenfound/demo-react-app@22f84bf6051c459f091022024066e8a6de225753 call \
test-secretfunc (m *MyModule) Example() *dagger.TestSecret {
return dag.
DemoReactApp().
TestSecret()
}@function
def example() -> dagger.TestSecret:
return (
dag.demo_react_app()
.test_secret()
)@func()
example(): TestSecret {
return dag
.demoReactApp()
.testSecret()
}