deployment-helper/README.md

32 lines
924 B
Markdown

# deployment-helper für Nikola based Websites
# ENV-Variables
* LFTP_PASSWORD (Deployment-Passwort for sftp-Upload)
* SSH_HOST (Deployment-Host for sftp-Upload)
* SSH_USER (Deployment-User for sftp-Upload)
## Python 3.11 and Nikola 8.x
This image is based on the python:3.11-alpine image and includes additional
Python-packages for building nikola-sites.
## Configure your project
Create a configuration file in your git-repo: `.deployment-helper`
Configuration-Variables:
* DEPLOY_HELPER_ENABLE_NIKOLA (default: true)
* DEPLOY_HELPER_ENABLE_NODE (default: false)
* DEPLOY_HELPER_CONTENT_DIR (default: "website/output")
## lftp for sftp-Uploads
This image includes `lftp` to upload files to a sftp-server and use
the sftp-password from LFTP_PASSWORD environment variable.
```bash
lftp -e 'set sftp:auto-confirm yes; mirror -R ./<LOCAL_DIR>/ ./<REMOTE_DIR>/; bye' --env-password -u USER sftp://<TARGET_FQDN>
```