You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pclass="lead text-muted">Kool.dev brings you a set of helpers for usual CI needs.</p>
20
+
<pclass="lead text-muted">Kool.dev brings you a set of helpers for common CI needs.</p>
21
21
<p>
22
22
<ahref="https://kool.dev" class="btn btn-primary my-2">Learn more about Kool.dev</a>
23
-
<ahref="/laravel/gitlab/" class="btn btn-secondary my-2">Laravel for GitlabCI</a>
23
+
<ahref="/laravel/gitlab/" class="btn btn-secondary my-2">Laravel for GitLab CI/CD</a>
24
24
</p>
25
25
</section>
26
26
</div>
27
27
</main>
28
28
29
29
<footerclass="text-muted">
30
30
<divclass="container">
31
-
<p>CI Kool.dev is manteined by <ahref="https://kool.dev">Kool.dev</a> team and supported by <ahref="https://fireworkweb.com">Firework Web</a> and all the community.</p>
31
+
<p>CI Kool.dev is maintained by the <ahref="https://kool.dev">Kool.dev</a> team, sponsored by <ahref="https://fireworkweb.com">Firework Web</a>, and supported by the community.</p>
Copy file name to clipboardExpand all lines: laravel/gitlab/index.html
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@
16
16
<mainrole="main">
17
17
<sectionclass="jumbotron text-center">
18
18
<divclass="container">
19
-
<h1class="jumbotron-heading">Laravel continuous integration on Gitlab CI</h1>
20
-
<pclass="lead text-muted">A few usual build and quality assurante routines, with static analysis and validation for the PHP code and Laravel best practices.</p>
19
+
<h1class="jumbotron-heading">Laravel continuous integration on GitLab CI/CD</h1>
20
+
<pclass="lead text-muted">A few common build and QA routines, including static analysis and validation of PHP code and Laravel best practices.</p>
21
21
<p>
22
22
<ahref="https://kool.dev" target="_blank" class="btn btn-primary btn-sm my-2">Powered by Kool</a>
<h3>Gitlab CI configuration for a Laravel application running with Kool.dev</h3>
44
+
<h3>GitLab CI/CD configuration for a Laravel application running with Kool.dev</h3>
45
45
46
-
<p>The example below can be used to run Gitlab CI jobs for your Laravel application.</p>
47
-
<p><b>Requirements:</b> all jobs have a <i>dind</i> tag which is meant to indicate a pre-configured Gitlab Runner on your repository that can Docker-in-Docker jobs.</p>
46
+
<p>The example below can be used to run GitLab CI/CD jobs for your Laravel application.</p>
47
+
<p><b>Requirements:</b> all jobs have a <i>dind</i> tag, which is meant to indicate a pre-configured GitLab Runner on your repository that can run Docker-in-Docker jobs.</p>
48
48
49
49
<p><b>.gitlab-ci.yml</b></p>
50
50
@@ -101,7 +101,7 @@ <h3>Gitlab CI configuration for a Laravel application running with Kool.dev</h3>
101
101
phpunit:
102
102
extends: .phpunit</pre>
103
103
</div>
104
-
<p>and on your <b>kool.yml</b> make sure to add on the default Laravel preset, the QA help tasks which you can run locally and will be used by the CI jobs above:</p>
104
+
<p>And in your <b>kool.yml</b>, make sure to add the following QA help tasks to the default Laravel preset. You can run these tasks locally, and they'll be used by the CI jobs above:</p>
@@ -118,7 +118,7 @@ <h3>Gitlab CI configuration for a Laravel application running with Kool.dev</h3>
118
118
php-security-checker: kool run phpqa security-checker security:check composer.lock
119
119
phpunit: kool exec app ./vendor/bin/phpunit
120
120
start:chrome: kool docker -- --name="chromedriver" --network=$KOOL_GLOBAL_NETWORK -d --shm-size=256M fireworkweb/chromedriver:latest
121
-
stop:chrome: docker stop chromedriver
121
+
stop:chrome: kool docker stop chromedriver
122
122
dusk: kool run artisan dusk
123
123
php-cs-fixer-check:
124
124
- kool run phpqa php-cs-fixer fix --diff --dry-run app/
@@ -138,7 +138,7 @@ <h3>Gitlab CI configuration for a Laravel application running with Kool.dev</h3>
138
138
139
139
<footerclass="text-muted">
140
140
<divclass="container">
141
-
<p>CI Kool.dev is manteined by <ahref="https://kool.dev">Kool.dev</a> team and supported by <ahref="https://fireworkweb.com">Firework Web</a> and all the community.</p>
141
+
<p>CI Kool.dev is maintained by the <ahref="https://kool.dev">Kool.dev</a> team, sponsored by <ahref="https://fireworkweb.com">Firework Web</a>, and supported by the community.</p>
0 commit comments