From 236283ff8f58d170f080bdf86b6755343fcb473e Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Fri, 2 Apr 2021 05:02:11 +0000 Subject: [PATCH] Docs: remove old tutorial, list examples upfront Signed-off-by: Solomon Hykes --- README.md | 9 ++++++++- doc/tutorials.md | 15 --------------- 2 files changed, 8 insertions(+), 16 deletions(-) delete mode 100644 doc/tutorials.md diff --git a/README.md b/README.md index 98c07590..38464a95 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,14 @@ No matter how your deployment works under the hood, you can manage it with the s This makes developers more productive, because they don't have to learn a new workflow every time their deployment system changes. +## Examples + +* [Deploy a simple React application](https://github.com/dagger/dagger/blob/main/examples/README.md#deploy-a-simple-react-application) +* [Deploy an application to your Kubernetes cluster](https://github.com/dagger/dagger/blob/main/examples/README.md#deploy-a-simple-react-application) +* [Provision a Kubernetes cluster on AWS](https://github.com/dagger/dagger/blob/main/examples/README.md#provision-a-kubernetes-cluster-on-aws) +* [Add HTTP monitoring to your application](https://github.com/dagger/dagger/blob/main/examples/README.md#add-http-monitoring-to-your-application) +* [Deploy an application to your Kubernetes cluster](https://github.com/dagger/dagger/blob/main/examples/README.md#deploy-an-application-to-your-kubernetes-cluster) + ## Alpha disclaimer Dagger is *alpha-quality software*. It has many bugs, the user interface is minimal, and it may change in incompatible ways at any time. If you are still willing to try it, thank you! We appreciate your help and encourage you to ask questions and report issues. @@ -24,7 +32,6 @@ Dagger is *alpha-quality software*. It has many bugs, the user interface is mini * [Installing Dagger](doc/install.md) * [Adding Dagger to your project](doc/adding_dagger.md) -* [Tutorials](doc/tutorials.md) * [Examples](examples/README.md) * [Dagger vs. Other Software](doc/vs.md) * [Dagger Programmer Manual](doc/programmer.md) diff --git a/doc/tutorials.md b/doc/tutorials.md deleted file mode 100644 index 43e727e0..00000000 --- a/doc/tutorials.md +++ /dev/null @@ -1,15 +0,0 @@ -# Dagger Tutorials - -## Compute a test configuration - -Currently `dagger` can only do one thing: compute a configuration with optional inputs, and print the result. - -If you are confused by how to use this for your application, that is normal: `dagger compute` is a low-level command -which exposes the naked plumbing of the Dagger engine. In future versions, more user-friendly commands will be available -which hide the complexity of `dagger compute` (but it will always be available to power users, of course!). - -Here is an example command, using an example configuration: - -``` -$ dagger compute ./examples/simple --input-string www.host=mysuperapp.com --input-dir www.source=. -```