https://github.com/dagger/intro
A Dagger introduction, packaged as a Dagger toolchain. Learn Dagger from within Dagger!
https://github.com/dagger/intro
Last synced: about 1 month ago
JSON representation
A Dagger introduction, packaged as a Dagger toolchain. Learn Dagger from within Dagger!
- Host: GitHub
- URL: https://github.com/dagger/intro
- Owner: dagger
- License: apache-2.0
- Created: 2026-01-24T00:14:24.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-10T21:21:28.000Z (3 months ago)
- Last Synced: 2026-03-11T02:58:01.769Z (3 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup Module
This [toolchain](https://docs.dagger.io/core-concepts/toolchains) helps you get started with Dagger in your project.
It provides [checks](https://docs.dagger.io/core-concepts/checks) to walk you through adopting Dagger in your project.
## Get started
1. [Install Dagger](https://docs.dagger.io/getting-started/installation)
2. Install this [toolchain](https://docs.dagger.io/core-concepts/toolchains) in your project
```shell
# From the root of your projects repository
dagger init
dagger toolchain install github.com/dagger/setup
```
3. List the [checks](https://docs.dagger.io/core-concepts/checks) this toolchain provides:
```
dagger check -l
Name Description
install-setup Install your first Toolchain
login-to-cloud Login to Dagger Cloud with dagger login
install-more-toolchains Install your next toolchain
```
4. Execute the [checks](https://docs.dagger.io/core-concepts/checks)
```
dagger check
```
The failed checks will provide instructions to assist you through your dagger onboarding!