Skip to content

Commit a724c45

Browse files
authored
Merge pull request #4 from indiegenus/doc-updates
Kool CI Site Copy Fixes
2 parents 25b0b34 + 6f568f5 commit a724c45

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
## Kool.dev CI helpers
22

33
Check out [ci.kool.dev](https://ci.kool.dev).
4-
This repository contains examples and resources for running helpful and usual CI/CD routines on the most popular CI platforms.
4+
This repository contains examples and resources for running helpful and common CI/CD routines on the most popular CI platforms.
55

66
### Local development
77

88
#### Requirements
99

10-
> The simplest way is using [kool](https://github.com/kool-dev/kool) for power Docker and Docker Compose to local development.
10+
> For local development, the simplest way is use [kool](https://github.com/kool-dev/kool) to power Docker and Docker Compose.
1111
12-
To spin up and run this project locally for development purposes you need simply to:
12+
To spin up this project on your local machine, just run:
1313

1414
```
1515
kool start
1616
```
1717

18-
And that is it!
18+
And that's it!

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
<section class="jumbotron text-center">
1818
<div class="container">
1919
<h1 class="jumbotron-heading">Continuous Integration Helpers</h1>
20-
<p class="lead text-muted">Kool.dev brings you a set of helpers for usual CI needs.</p>
20+
<p class="lead text-muted">Kool.dev brings you a set of helpers for common CI needs.</p>
2121
<p>
2222
<a href="https://kool.dev" class="btn btn-primary my-2">Learn more about Kool.dev</a>
23-
<a href="/laravel/gitlab/" class="btn btn-secondary my-2">Laravel for GitlabCI</a>
23+
<a href="/laravel/gitlab/" class="btn btn-secondary my-2">Laravel for GitLab CI/CD</a>
2424
</p>
2525
</section>
2626
</div>
2727
</main>
2828

2929
<footer class="text-muted">
3030
<div class="container">
31-
<p>CI Kool.dev is manteined by <a href="https://kool.dev">Kool.dev</a> team and supported by <a href="https://fireworkweb.com">Firework Web</a> and all the community.</p>
31+
<p>CI Kool.dev is maintained by the <a href="https://kool.dev">Kool.dev</a> team, sponsored by <a href="https://fireworkweb.com">Firework Web</a>, and supported by the community.</p>
3232
</div>
3333
</footer>
3434
</body>

laravel/gitlab/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<main role="main">
1717
<section class="jumbotron text-center">
1818
<div class="container">
19-
<h1 class="jumbotron-heading">Laravel continuous integration on Gitlab CI</h1>
20-
<p class="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+
<h1 class="jumbotron-heading">Laravel continuous integration on GitLab CI/CD</h1>
20+
<p class="lead text-muted">A few common build and QA routines, including static analysis and validation of PHP code and Laravel best practices.</p>
2121
<p>
2222
<a href="https://kool.dev" target="_blank" class="btn btn-primary btn-sm my-2">Powered by Kool</a>
2323
</p>
2424
<p>
25-
<a href="variabless.yml" class="btn btn-secondary btn-sm my-2">variabless.yml</a>
25+
<a href="variables.yml" class="btn btn-secondary btn-sm my-2">variables.yml</a>
2626
<a href="assets.yml" class="btn btn-secondary btn-sm my-2">assets.yml</a>
2727
<a href="cs-fixer.yml" class="btn btn-secondary btn-sm my-2">cs-fixer.yml</a>
2828
<a href="dusk.yml" class="btn btn-secondary btn-sm my-2">dusk.yml</a>
@@ -41,10 +41,10 @@ <h1 class="jumbotron-heading">Laravel continuous integration on Gitlab CI</h1>
4141

4242
<section>
4343
<div class="container" style="margin-bottom: 5em;">
44-
<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>
4545

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>
4848

4949
<p><b>.gitlab-ci.yml</b></p>
5050

@@ -101,7 +101,7 @@ <h3>Gitlab CI configuration for a Laravel application running with Kool.dev</h3>
101101
phpunit:
102102
extends: .phpunit</pre>
103103
</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>
105105

106106
<div style="margin: 1em 5em; padding: 1em;" class="bg-dark">
107107
<pre class="text-light">
@@ -138,7 +138,7 @@ <h3>Gitlab CI configuration for a Laravel application running with Kool.dev</h3>
138138

139139
<footer class="text-muted">
140140
<div class="container">
141-
<p>CI Kool.dev is manteined by <a href="https://kool.dev">Kool.dev</a> team and supported by <a href="https://fireworkweb.com">Firework Web</a> and all the community.</p>
141+
<p>CI Kool.dev is maintained by the <a href="https://kool.dev">Kool.dev</a> team, sponsored by <a href="https://fireworkweb.com">Firework Web</a>, and supported by the community.</p>
142142
</div>
143143
</footer>
144144
</body>

0 commit comments

Comments
 (0)