-
Notifications
You must be signed in to change notification settings - Fork 170
/
Envoy.blade.php
175 lines (148 loc) Β· 4.66 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
@setup
require __DIR__.'/vendor/autoload.php';
$branch = "main";
$server = "spatie.be";
$userAndServer = 'forge@'. $server;
$repository = "spatie/spatie.be";
$baseDir = "/home/forge/spatie.be";
$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
runYarn
generateAssets
updateSymlinks
optimizeInstallation
backupDatabase
migrateDatabase
blessNewRelease
cleanOldReleases
finishDeploy
@endmacro
@macro('deploy-code')
deployOnlyCode
@endmacro
@task('startDeployment', ['on' => 'local'])
{{ logMessage("π Starting deployment...") }}
git checkout {{ $branch }}
git pull origin {{ $branch }}
@endtask
@task('cloneRepository', ['on' => 'remote'])
{{ logMessage("π Cloning repository...") }}
[ -d {{ $releasesDir }} ] || mkdir {{ $releasesDir }};
cd {{ $releasesDir }}
# Create the release dir
mkdir {{ $newReleaseDir }}
# Clone the repo
git clone --depth 1 --branch {{ $branch }} [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
# Mark release
cd {{ $newReleaseDir }}
echo "{{ $newReleaseName }}" > public/release-name.txt
@endtask
@task('runComposer', ['on' => 'remote'])
{{ logMessage("π Running Composer...") }}
cd {{ $newReleaseDir }}
ln -nfs {{ $baseDir }}/.env .env
composer install --prefer-dist --no-scripts --no-dev -o
@endtask
@task('runYarn', ['on' => 'remote'])
{{ logMessage("π¦ Running Yarn...") }}
cd {{ $newReleaseDir }}
yarn config set ignore-engines true
yarn
@endtask
@task('generateAssets', ['on' => 'remote'])
{{ logMessage("π
Generating assets...") }}
cd {{ $newReleaseDir }}
yarn build
php artisan filament:assets
@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
# Remove the public/media directory and replace with persistent data
rm -rf {{ $newReleaseDir }}/public/images/medialibrary
cd {{ $newReleaseDir }}
ln -nfs {{ $baseDir }}/persistent/medialibrary public/images/medialibrary
# Remove the public/docs directory and replace with persistent data
rm -rf {{ $newReleaseDir }}/public/docs
cd {{ $newReleaseDir }}
ln -nfs {{ $baseDir }}/persistent/public/docs public/docs
# 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 view:clear
php artisan horizon:terminate
php artisan config:clear
php artisan config:cache
php artisan event:cache
php artisan guidelines:import
#php artisan schedule-monitor:sync
sudo service php8.3-fpm restart
sudo supervisorctl restart all
@endtask
@task('cleanOldReleases', ['on' => 'remote'])
{{ logMessage("πΎ Cleaning up old releases...") }}
# Delete all but the 3 most recent.
cd {{ $releasesDir }}
ls -dt {{ $releasesDir }}/* | tail -n +4 | xargs -d "\n" sudo chown -R forge .
ls -dt {{ $releasesDir }}/* | tail -n +4 | xargs -d "\n" rm -rf
@endtask
@task('finishDeploy', ['on' => 'local'])
{{ logMessage("π Application deployed!") }}
{{ logMessage('Make sure to test the docs and executing a purchase') }}
@endtask
@task('deployOnlyCode',['on' => 'remote'])
{{ logMessage("π» Deploying code changes...") }}
cd {{ $currentDir }}
git pull origin {{ $branch }}
php artisan view:clear
php artisan config:clear
php artisan config:cache
php artisan event:cache
php artisan guidelines:import
sudo service php8.3-fpm restart
#php artisan schedule-monitor:sync
php artisan horizon:terminate
sudo supervisorctl restart all
@endtask