From bf09379c899f9fd5deadc43b536cf0bf903ce1a8 Mon Sep 17 00:00:00 2001 From: lavenderguitar Date: Sun, 6 Feb 2022 23:13:32 -0500 Subject: [PATCH] v1 - Init repo --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..54eae1d --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +Jekyll Site Configuration +============== + +This role automates the configuration for Jekyll static sites on Ubuntu20 instances. Ruby is installed to support the use of Jekyll. Bundler is installed to support the use of Capistrano for deploys. + +Use `deploy_dirs` to set the directory for deploys. + +Role Variables +-------- + + site_name: "example-site" # Name of the static-site (no spaces). + deploy_dirs: # List of deploy directories to create. + - "/srv/{{ site_name }}/" + deploy_user: "jekyll" # User for deploys. + deploy_group: "jekyll" # Group of deploy user. + + ruby_version: "2.7" # The version of Ruby to install. (v2.3 -> 2.7) + bundler_version: "2.1.4" # The Bundler version. \ No newline at end of file