-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.env.example
More file actions
25 lines (21 loc) · 1.04 KB
/
Copy pathdeploy.env.example
File metadata and controls
25 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# =============================================================================
# Cronmanager – Deployment Configuration
#
# Copy this file to deploy.env and adjust the values for your environment.
# deploy.env is excluded from version control (.gitignore).
#
# Fixed deployment paths (not configurable via deploy.env):
# Agent : /opt/cronmanager/agent
# Web : /opt/cronmanager/www
# DB : /opt/cronmanager/db
# =============================================================================
# Transport type: SSH (deploy to remote via SSH) or LOCAL (deploy on this machine)
DEPLOY_TYPE=SSH
# SSH host alias from ~/.ssh/config (required when DEPLOY_TYPE=SSH)
DEPLOY_SSH=cronmanager-host
# Target directory for the shared composer.json
# composer.json will be placed here; run "composer install" once after first deploy.
DEPLOY_COMPOSER=/opt/phplib/
# Target directory containing the installed vendor packages (autoload.php)
# This is the directory mounted into Docker containers as /var/www/libs/vendor
DEPLOY_COMPOSER_VENDOR=/opt/phplib/vendor/