# Copy this file to .env and fill in the values. # .env is gitignored — never commit it. # # `make deploy` rsyncs the built _site/ to the VPS, then pushes the # repository to GitHub. The Makefile aborts with a clear error if any # of VPS_USER / VPS_HOST / VPS_PATH is unset. # --- VPS deployment target ------------------------------------------------- # SSH user on the deployment VPS. VPS_USER= # Hostname or IP of the deployment VPS. VPS_HOST= # Absolute path to the document root on the VPS (e.g. /var/www/levineuwirth.org). VPS_PATH= # --- GitHub mirror push ---------------------------------------------------- # A GitHub fine-grained personal access token with Contents: read+write # on the levineuwirth.org repository. # Generate at: https://github.com/settings/tokens GITHUB_TOKEN= # The GitHub repository in owner/repo format. GITHUB_REPO=levineuwirth/levineuwirth.org