Skip to content

Commit 8f0ecd7

Browse files
committed
added .env.include
1 parent 637f529 commit 8f0ecd7

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

.env.include

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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

Envoy.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{--
2-
-- Laravel specific Makefile
2+
-- laravel-scripts - Envoy deployment script for Laravel projects
33
--
44
-- @author Jeroen Derks <jeroen@derks.it>
55
-- @since 2017/May/23

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Laravel specific Makefile
2+
# laravel-scripts - Laravel specific Makefile
33
#
44
# @author Jeroen Derks <jeroen@derks.it>
55
# @since 2017/May/23

opcache_reset.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Laravel specific Makefile
3+
* laravel-scripts - reset PHP opcode cache on server
44
*
55
* @author Jeroen Derks <jeroen@derks.it>
66
* @since 2017/Nov/02

0 commit comments

Comments
 (0)