Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr
32 lines
1.0 KiB
Bash
32 lines
1.0 KiB
Bash
# SSH connection
|
|
REMOTE_USER=root
|
|
REMOTE_HOST=example.com
|
|
REMOTE_PORT=22
|
|
REMOTE_HOME=/home/example.com
|
|
|
|
# Server paths (override here if your setup differs from the Makefile defaults)
|
|
WEBROOT=/home/example.com/public_html
|
|
SITE_CONFIG_DIR=/home/example.com/site-config
|
|
|
|
# Grav
|
|
GRAV_VERSION=2.0.0-rc.10
|
|
|
|
# Repos
|
|
USER_REPO=https://gitea.example.com/org/intotheeast-user.git
|
|
MAIN_REPO=https://gitea.example.com/org/travel-blog-intotheeast.git
|
|
|
|
# Gitea credentials — never commit these; only ever in .env (local) or ~/.env-project (server, temporary)
|
|
GITEA_HOST=gitea.example.com
|
|
GITEA_USER=deploy-user
|
|
GITEA_TOKEN=your-gitea-personal-access-token
|
|
|
|
# Test credentials — used by 'make test-post' (must be a valid Grav site login user)
|
|
GRAV_TEST_USER=mischa
|
|
GRAV_TEST_PASS=TravelBlog2026!
|
|
GRAV_BASE_URL=http://localhost:8081
|
|
GRAV_USER_DIR=/home/mischa/Projects/travel-blog-intotheeast/user
|
|
|
|
# travel-memories — Immich connection (used by the travel-memories Docker service)
|
|
IMMICH_URL=http://192.168.1.x:2283
|
|
IMMICH_API_KEY=your-immich-api-key
|