forked from brendt/rfc-vote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Envoy.blade.php
192 lines (159 loc) Β· 4.35 KB
/
Envoy.blade.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
@setup
require __DIR__.'/vendor/autoload.php';
$server = "stitcher.io";
$userAndServer = 'forge@'. $server;
$repository = "brendt/rfc-vote.git";
$baseDir = "/home/forge/rfc.stitcher.io";
$releasesDir = "{$baseDir}/releases";
$currentDir = "{$baseDir}/current";
$newReleaseName = date('Ymd-His');
$newReleaseDir = "{$releasesDir}/{$newReleaseName}";
$user = get_current_user();
function logMessage($message) {
return "echo '\033[32m" .$message. "\033[0m';\n";
}
@endsetup
@servers(['local' => '127.0.0.1', 'remote' => $userAndServer])
@macro('deploy')
startDeployment
cloneRepository
runComposer
runNpm
updateSymlinks
optimizeInstallation
backupDatabase
migrateDatabase
blessNewRelease
cleanOldReleases
finishDeploy
@endmacro
@macro('deploy-back')
startDeployment
setupPhp
cloneRepository
runComposer
updateSymlinks
optimizeInstallation
backupDatabase
migrateDatabase
blessNewRelease
cleanOldReleases
finishDeploy
@endmacro
@macro('deploy-front')
pullChanges
runNpmInCurrentDir
finishCodeDeploy
@endmacro
@macro('deploy-code')
pullChanges
finishCodeDeploy
@endmacro
@task('startDeployment', ['on' => 'local'])
{{ logMessage("π Starting deployment...") }}
git checkout main
git pull origin main
@endtask
@task('cloneRepository', ['on' => 'remote'])
{{ logMessage("π Cloning repository...") }}
[ -d {{ $releasesDir }} ] || mkdir {{ $releasesDir }};
cd {{ $releasesDir }};
# Create the release dir
mkdir {{ $newReleaseDir }};
# Clone the repo
eval `ssh-agent -s`
ssh-add -D
ssh-add ~/.ssh/id_rsa_rfc
git clone --depth 1 [email protected]:{{ $repository }} {{ $newReleaseName }}
# Configure sparse checkout
cd {{ $newReleaseDir }}
git config core.sparsecheckout true
echo "*" > .git/info/sparse-checkout
echo "!storage" >> .git/info/sparse-checkout
echo "!public/build" >> .git/info/sparse-checkout
git read-tree -mu HEAD
ssh-add -D
# Mark release
cd {{ $newReleaseDir }}
echo "{{ $newReleaseName }}" > public/release-name.txt
@endtask
@task('runComposer', ['on' => 'remote'])
{{ logMessage("π Running Composer...") }}
cd {{ $newReleaseDir }};
composer install --prefer-dist --no-scripts --no-dev -o;
@endtask
@task('runNpm', ['on' => 'remote'])
{{ logMessage("π¦ Running NPM...") }}
cd {{ $newReleaseDir }};
npm install
npm run build
@endtask
@task('runNpmInCurrentDir', ['on' => 'remote'])
{{ logMessage("π¦ Running NPM...") }}
cd {{ $currentDir }};
npm install
npm run build
@endtask
@task('updateSymlinks', ['on' => 'remote'])
{{ logMessage("π Updating symlinks to persistent data...") }}
# Remove the storage directory and replace with persistent data
rm -rf {{ $newReleaseDir }}/storage;
cd {{ $newReleaseDir }};
ln -nfs {{ $baseDir }}/persistent/storage storage;
# Import the environment config
cd {{ $newReleaseDir }};
ln -nfs {{ $baseDir }}/.env .env;
@endtask
@task('optimizeInstallation', ['on' => 'remote'])
{{ logMessage("β¨ Optimizing installation...") }}
cd {{ $newReleaseDir }};
php artisan clear-compiled;
@endtask
@task('backupDatabase', ['on' => 'remote'])
{{ logMessage("π Backing up database...") }}
cd {{ $newReleaseDir }}
php artisan backup:run
@endtask
@task('migrateDatabase', ['on' => 'remote'])
{{ logMessage("π Migrating database...") }}
cd {{ $newReleaseDir }};
php artisan migrate --force;
@endtask
@task('blessNewRelease', ['on' => 'remote'])
{{ logMessage("π Blessing new release...") }}
ln -nfs {{ $newReleaseDir }} {{ $currentDir }};
cd {{ $newReleaseDir }}
php artisan config:clear
php artisan cache:clear
php artisan config:cache
sudo service php8.2-fpm restart
sudo supervisorctl restart all
@endtask
@task('cleanOldReleases', ['on' => 'remote'])
{{ logMessage("πΎ Cleaning up old releases...") }}
# Delete all but the 5 most recent.
cd {{ $releasesDir }}
ls -dt {{ $releasesDir }}/* | tail -n +6 | xargs -d "\n" sudo chown -R forge .;
ls -dt {{ $releasesDir }}/* | tail -n +6 | xargs -d "\n" rm -rf;
@endtask
@task('finishDeploy', ['on' => 'local'])
{{ logMessage("π Application deployed!") }}
@endtask
@task('pullChanges',['on' => 'remote'])
{{ logMessage("π» Deploying code changes...") }}
cd {{ $currentDir }}
eval `ssh-agent -s`
ssh-add -D
ssh-add ~/.ssh/id_rsa_rfc
git pull origin main
ssh-add -D
@endtask
@task('finishCodeDeploy',['on' => 'remote'])
cd {{ $currentDir }}
php artisan storage:link
php artisan config:clear
php artisan cache:clear
php artisan config:cache
sudo supervisorctl restart all
sudo service php8.2-fpm restart
@endtask