|
| 1 | +# |
| 2 | +# laravel-script .env.include for environment variables used in Envoy |
| 3 | +# |
| 4 | +# @author Jeroen Derks <jeroen@derks.it> |
| 5 | +# @since 2018/Wed/28 |
| 6 | +# @license GPLv3 https://www.gnu.org/licenses/gpl.html |
| 7 | +# @copyright Copyright (c) 2017-2018 Jeroen Derks / Derks.IT |
| 8 | +# @url https://github.com/Magentron/laravel-scripts/ |
| 9 | +# |
| 10 | +# This file is part of laravel-scripts. |
| 11 | +# |
| 12 | +# laravel-scripts is free software: you can redistribute it and/or modify |
| 13 | +# it under the terms of the GNU General Public License as published by |
| 14 | +# the Free Software Foundation, either version 3 of the License, or (at |
| 15 | +# your option) any later version. |
| 16 | +# |
| 17 | +# laravel-scripts is distributed in the hope that it will be useful, but |
| 18 | +# WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | +# GNU General Public License for more details. |
| 21 | +# |
| 22 | +# You should have received a copy of the GNU General Public License along |
| 23 | +# with laravel-scripts. If not, see <http://www.gnu.org/licenses/>. |
| 24 | +# |
| 25 | + |
| 26 | +# server to deploy to |
| 27 | +DEPLOY_SERVER=server.example.org |
| 28 | + |
| 29 | +# path on server to deploy to |
| 30 | +DEPLOY_PATH=/var/www |
| 31 | + |
| 32 | +# repository to deploy (used from server if possible) |
| 33 | +DEPLOY_REPOSITORY=git@git.example.org:user/repo.git |
| 34 | + |
| 35 | +# report deployments to Slack |
| 36 | +DEPLOY_SLACK_WEBHOOK=https://hooks.slack.com/services/SOME/THING/SECRET |
| 37 | + |
| 38 | +# Download Maxmind GeoIP database on deployment |
| 39 | +DEPLOY_DL_MAXMIND=false |
| 40 | + |
| 41 | +# Reset PHP opcache |
| 42 | +DEPLOY_OPCACHE_RESET=false |
0 commit comments