From a7807f089cf4c661fa39a303162fa2b3e65fc8c1 Mon Sep 17 00:00:00 2001 From: Artur Gurgul1 Date: Wed, 6 Aug 2025 17:55:14 +0200 Subject: [PATCH] add doc --- doc/execute.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 doc/execute.md diff --git a/doc/execute.md b/doc/execute.md new file mode 100644 index 0000000..efa8ace --- /dev/null +++ b/doc/execute.md @@ -0,0 +1,37 @@ + + +It is how you can describe config of your server + + + +```ruby +user :artur +user :lucyna + +service :forgejo do |context| + context.home_page = true + # per default all users are allowed + context.users = [:artur] +end + +service :zulip + +# this should be already installed, becouse it is required by others +service :postgresql + +install :nvim, :python +``` + + +And then save it as `Configfile` as default or with specyfic name + + +```bash +# if default file name +dat execute + +# if non standard file +dat execute file-name + +``` +