From dba46333ad8e39ffc30745b8d13a271c4023f674 Mon Sep 17 00:00:00 2001 From: Zach Date: Fri, 28 Jul 2023 12:06:24 -0500 Subject: [PATCH] lando: add page (#10546) Co-authored-by: K.B.Dharun Krishna --- pages/common/lando.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/lando.md diff --git a/pages/common/lando.md b/pages/common/lando.md new file mode 100644 index 0000000000..6315bb52a7 --- /dev/null +++ b/pages/common/lando.md @@ -0,0 +1,36 @@ +# lando + +> Local development environment and DevOps tool built on Docker. +> More information: . + +- Initialize code for use with `lando`: + +`lando init` + +- Print information about your app: + +`lando info` + +- Start your app: + +`lando start` + +- Stop your app: + +`lando stop` + +- Restart your app: + +`lando restart` + +- Rebuild your app from scratch, preserving data: + +`lando rebuild` + +- Display logs for your app: + +`lando logs` + +- Destroy your app: + +`lando destroy`