25 lines
691 B
Bash
25 lines
691 B
Bash
# Flag to push posts to the ghost instance
|
|
#
|
|
PUSH_POSTS=true
|
|
|
|
# Download remote/internet-hosted images?
|
|
#
|
|
DOWNLOAD_IMAGES=false
|
|
|
|
# Base URL
|
|
# Final URL should be: https://www.laurivan.com/
|
|
BASE_URL="http://10.0.0.32:3000"
|
|
|
|
# Ghost - related variables
|
|
#
|
|
API_KEY="62c86a0b59b1f400011aa9c3:8d711e07bc2a313b7012af5fc2f386434cc539c0f2efd1cad80f7c27476578b1"
|
|
API_VERSION="v4.0"
|
|
AUTHOR_EMAIL=laur.ivan@gmail.com
|
|
|
|
# Location of head/hero images
|
|
HEAD_IMAGE_PATH="/home/laur/dev/ghost-dev/gatsby.laurivan.com/static/images/headers/"
|
|
|
|
# Location of blogs
|
|
# BLOGS_PATH="/home/laur/dev/ghost-dev/gatsby.laurivan.com/archive/posts/"
|
|
BLOGS_PATH="/home/laur/dev/ghost-dev/gatsby.laurivan.com/archive/posts"
|