-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.conf
More file actions
45 lines (33 loc) · 1.54 KB
/
deploy.conf
File metadata and controls
45 lines (33 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#############################################
# https://github.com/fl3a/jekyll_deployment #
#############################################
# Branch that should be build, e.g. 'master'
build_branch='main'
# Domain, e.g. 'example.com'.
domain='example.com'
# Path to your Jekyll Git-Repository
git_repo="${HOME}/repos/${domain}.git"
# Path to document root, destination for the generated html
www="/var/www/virtual/${USER}/${domain}"
# Value for `JEKYLL_ENV`, default 'production'
env="production"
# Get git SHA, assign it to `JEKYLL_BUILD_REVISION`
# for overriding `site.github.build_revision` variable.
#rev=$(git rev-parse HEAD)
# Build prefix, e.g. `--trace` or `--incremental`
# added as prefix `bundle excec jekyll build $build_prefix`
#build_prefix="--trace"
# PATH, e.g. to include a newer version of gcc
# which is needed for compiling gems via `bundle install`.
#PATH="/opt/rh/devtoolset-9/root/usr/bin/:${PATH}"
# pkg-config search path, contains e.g. **MagickCore.pc**
#export PKG_CONFIG_PATH="/usr/lib/pkgconfig/"
# Search path to search for extra libraries, e.g. **libvips.so.42**
#export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${HOME}/lib64"
# File which contains jekyll specific variables
# like e.g. JEKYLL_GITHUB_TOKEN that will be sourced
#extra_vars="${HOME}/.jekyll_vars"
# Execute the following line after the deployment is finished.
# E.g. another jekyll lives in a subdirectory of this one,
# like my cv which lives at florian.latzel.io/cv/ that need to be rebuild too.
#post_exec="${HOME}/repos/jekyll_deployment/post-receive ${HOME}/repos/cv"