diff options
author | Jefferson Julio <[email protected]> | 2021-05-30 20:06:28 -0300 |
---|---|---|
committer | Jefferson Julio <[email protected]> | 2021-05-30 20:06:28 -0300 |
commit | e9c35a9eff9e0881df7d6a6e8d17b70ac37ad0fe (patch) | |
tree | 2a6a9d105b68daea1094e5a2faaca0fb9b138ab3 /config.sh | |
parent | 1d628ce8cee397ca9c2a8a27d5820c91812a27ca (diff) | |
download | blog.sh-e9c35a9eff9e0881df7d6a6e8d17b70ac37ad0fe.tar.bz2 blog.sh-e9c35a9eff9e0881df7d6a6e8d17b70ac37ad0fe.zip |
Better modularization
Diffstat (limited to 'config.sh')
-rwxr-xr-x | config.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.sh b/config.sh new file mode 100755 index 0000000..4cfed05 --- /dev/null +++ b/config.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# All relatives paths must end with slash and must not be start by dot and/or slash +# Examplo +# VAR_PATH=dir/subdir/ + +# Folder where posts are stored, must be relative and suffed by a slash +ARTICLES_PATH=artigos/ |