-
Notifications
You must be signed in to change notification settings - Fork 0
/
local-run.sh
executable file
·69 lines (56 loc) · 2.08 KB
/
local-run.sh
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
# Check for python-is-python3 installed
if ! command -v python &>/dev/null; then
echo "It appears you do not have python-is-python3 installed"
exit 1
fi
# Check for zola being installed
if ! command -v zola &>/dev/null; then
echo "zola could not be found please install it from https://www.getzola.org/documentation/getting-started/installation"
exit 1
fi
# Check for correct slugify package
PYTHON_ERROR=$(eval "python -c 'from slugify import slugify; print(slugify(\"Test String One\"))'" 2>&1)
if [[ $PYTHON_ERROR != "test-string-one" ]]; then
if [[ $PYTHON_ERROR =~ "NameError" ]]; then
echo "It appears you have the wrong version of slugify installed, the required pip package is python-slugify"
else
echo "It appears you do not have slugify installed. Install it with 'pip install python-slugify'"
fi
exit 1
fi
# Check for rtoml package
PYTHON_ERROR=$(eval "python -c 'import rtoml'" 2>&1)
if [[ $PYTHON_ERROR =~ "ModuleNotFoundError" ]]; then
echo "It appears you do not have rtoml installed. Install it with 'pip install rtoml'"
exit 1
fi
# Check that the vault got set
if [[ -z "${VAULT}" ]]; then
if [[ -f ".vault_path" ]]; then
export VAULT=$(cat .vault_path)
else
echo "Path to the obsidian vault is not set, please set the path using in the $(.vault_path) file or $VAULT env variable"
exit 1
fi
fi
# Pull environment variables from the vault's netlify.toml when building (by generating env.sh to be sourced)
python env.py
# Set the site and repo url as local since locally built
export SITE_URL=local
export REPO_URL=local
# Remove previous build and sync Zola template contents
rm -rf build
rsync -a zola/ build
rsync -a content/ build/content
# Use obsidian-export to export markdown content from obsidian
mkdir -p build/__originals
if [ -z "$STRICT_LINE_BREAKS" ]; then
bin/obsidian-export --hard-linebreaks --no-recursive-embeds --no-git "$VAULT" build/__originals
else
bin/obsidian-export --no-recursive-embeds --no-git "$VAULT" build/__originals
fi
# Run conversion script
source env.sh && python convert.py && rm env.sh
# Serve Zola site
zola --root=build serve