├── .dagger ├── .gitattributes ├── .gitignore ├── go.mod ├── go.sum └── main.go ├── .env ├── LICENSE ├── README.md ├── alpine-workspace ├── .gitattributes ├── .gitignore ├── dagger.json ├── pom.xml └── src │ └── main │ └── java │ └── io │ └── dagger │ └── modules │ └── alpineworkspace │ └── AlpineWorkspace.java ├── dagger.json └── ts-hello ├── .eslintignore ├── .eslintrc ├── .exercism └── metadata.json ├── README.md ├── hello-world.test.ts ├── hello-world.ts ├── jest.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.dagger/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/.dagger/.gitattributes -------------------------------------------------------------------------------- /.dagger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/.dagger/.gitignore -------------------------------------------------------------------------------- /.dagger/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/.dagger/go.mod -------------------------------------------------------------------------------- /.dagger/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/.dagger/go.sum -------------------------------------------------------------------------------- /.dagger/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/.dagger/main.go -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/README.md -------------------------------------------------------------------------------- /alpine-workspace/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/alpine-workspace/.gitattributes -------------------------------------------------------------------------------- /alpine-workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.env 3 | -------------------------------------------------------------------------------- /alpine-workspace/dagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/alpine-workspace/dagger.json -------------------------------------------------------------------------------- /alpine-workspace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/alpine-workspace/pom.xml -------------------------------------------------------------------------------- /alpine-workspace/src/main/java/io/dagger/modules/alpineworkspace/AlpineWorkspace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/alpine-workspace/src/main/java/io/dagger/modules/alpineworkspace/AlpineWorkspace.java -------------------------------------------------------------------------------- /dagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/dagger.json -------------------------------------------------------------------------------- /ts-hello/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/.eslintignore -------------------------------------------------------------------------------- /ts-hello/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/.eslintrc -------------------------------------------------------------------------------- /ts-hello/.exercism/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/.exercism/metadata.json -------------------------------------------------------------------------------- /ts-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/README.md -------------------------------------------------------------------------------- /ts-hello/hello-world.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/hello-world.test.ts -------------------------------------------------------------------------------- /ts-hello/hello-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/hello-world.ts -------------------------------------------------------------------------------- /ts-hello/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/jest.config.js -------------------------------------------------------------------------------- /ts-hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/package.json -------------------------------------------------------------------------------- /ts-hello/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/tsconfig.json -------------------------------------------------------------------------------- /ts-hello/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eunomie/local-agent/HEAD/ts-hello/yarn.lock --------------------------------------------------------------------------------