Skip to content

Commit d6c6b3e

Browse files
committed
Add first set of tags to cookbook recipes
1 parent 6558b64 commit d6c6b3e

File tree

14 files changed

+51
-3
lines changed

14 files changed

+51
-3
lines changed

content/docs/2_cookbook/11_performance/0_lazy-loading/cookbook-recipe.txt

+5
Original file line numberDiff line numberDiff line change
@@ -472,3 +472,8 @@ As a fallback for browsers that don't support native lazy-loading, or if you nee
472472
- (link: https://imagekit.io/blog/lazy-loading-images-complete-guide/ text: Lazy loading guide)
473473
- (link: https://web.dev/browser-level-image-lazy-loading/ text: Browser-level image lazy loading)
474474
- (link: https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading text: MDN Lazy loading)
475+
476+
477+
----
478+
479+
Tags: performance

content/docs/2_cookbook/11_performance/0_responsive-images/cookbook-recipe.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,10 @@ So what are the main take-aways from the above?
533533
- (link: https://css-tricks.com/a-guide-to-the-responsive-images-syntax-in-html/ text: A Guide to the Responsive Images Syntax in HTML)
534534
- (link: https://cloudinary.com/blog/introducing_intelligent_responsive_image_breakpoints_solutions text: Introducting responsive breakpoint solutions)
535535

536+
----
536537

538+
----
537539

538-
540+
Tags: responsive design, performance
539541

540542

content/docs/2_cookbook/9_setup/0_caddy/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,7 @@ root * /usr/share/caddy
121121
```
122122

123123
Here, we're importing/using the two snippets we defined earlier. Also we're setting the root folder for this server, which should point to the absolute filesystem path, where your Kirby files are located.
124+
125+
----
126+
127+
Tags: webserver, deployment, development

content/docs/2_cookbook/9_setup/0_coding-style-standards/cookbook-recipe.txt

+3
Original file line numberDiff line numberDiff line change
@@ -425,3 +425,6 @@ It would be too much to cover these automation options in this recipe. So we lea
425425
- (link: https://github.com/squizlabs/PHP_CodeSniffer/wiki text: CodeSniffer wiki)
426426
- (link: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-Ruleset text: Annotated ruleset)
427427
- (link: https://edorian.github.io/php-coding-standard-generator/#phpcs text: Ruleset generator)
428+
429+
----
430+
Tags: development

content/docs/2_cookbook/9_setup/0_ddev/cookbook-recipe.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -225,5 +225,6 @@ Other DDEV issues? Head over to the (link: https://ddev.readthedocs.io/en/stable
225225

226226
Other Kirby related issues: Ask us (link: forum.getkirby.com text: on the forum).
227227

228+
----
228229

229-
230+
Tags: development, local development environment

content/docs/2_cookbook/9_setup/0_debugging-basics/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -241,3 +241,7 @@ Description: When developing, debugging helps identify errors more easily.
241241
----
242242

243243
Authors: - authors/sonja-broda
244+
245+
----
246+
247+
Tags: development, debugging

content/docs/2_cookbook/9_setup/0_development-environment/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,7 @@ Published: 2019-04-15
9595
----
9696

9797
Authors: - authors/sonja-broda
98+
99+
----
100+
101+
Tags: development

content/docs/2_cookbook/9_setup/0_git-based-deployment-with-dokku/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -437,3 +437,7 @@ By setting up different workflows, you could choose to set up certain branches t
437437
- The buildpacks are very minimal, if you want a text editor included inside your container, create a file named `apt-packages` at the root of the repository and add the necessary packages, for example `vim-tiny`. You will also need to install the (link: https://github.com/dokku-community/dokku-apt text: dokku-apt plugin).
438438
- You can view the nginx/server logs on an app with `dokku logs <appname>`
439439
- If you are having issues, try turning (link: https://dokku.com/docs/getting-started/troubleshooting/#trace-mode text: trace mode) on with `dokku trace:on`. The output will be significantly more verbose, but may help you pinpoint issues that are otherwise hidden.
440+
441+
----
442+
443+
Tags: deployment

content/docs/2_cookbook/9_setup/0_git-based-ftp-deployment/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,7 @@ Once the tag is pushed to GitHub, the production workflow starts immediately to
288288

289289
##Conclusion
290290
Now you have a complete guide for a modern staging/production deployment solution with very low server requirements. This guide can be extended in many different directions. Have fun using it.
291+
292+
----
293+
294+
Tags: deployment

content/docs/2_cookbook/9_setup/0_git/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,7 @@ Staging and committing works just the same as in the previous examples.
158158
<info>
159159
If you check out a tag, Git will warn you that your repo is in a "detached HEAD" state. This is expected and just means that you are not on a branch but a specific commit.
160160
</info>
161+
162+
----
163+
164+
Tags: development, deployment, version control

content/docs/2_cookbook/9_setup/0_kirby-meets-docker/cookbook-recipe.txt

+3
Original file line numberDiff line numberDiff line change
@@ -958,3 +958,6 @@ In this recipe, our focus was on giving you a hands-on approach to using Docker
958958
## Thank you
959959

960960
Thanks to (link: https://forum.getkirby.com/u/adspectus/ text: Uwe Gehring) for testing that everything works as expected and for his valuable advice.
961+
962+
----
963+
Tags: development, local development environment

content/docs/2_cookbook/9_setup/0_kirby-meets-purgecss/cookbook-recipe.txt

+3
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,6 @@ Description: A walkthrough on how to install and use PurgeCSS with Kirby.
153153
----
154154

155155
Authors: - authors/manuel-steinberg
156+
157+
----
158+
Tags: development, deployment, performance

content/docs/2_cookbook/9_setup/0_nginx/cookbook-recipe.txt

+4
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,7 @@ Including `fastcgi.conf` will properly set some global PHP variables like `SCRIP
162162

163163
## TLS certificates and Let's Encrypt
164164
These days, typically you want to use your Kirby website with a proper TLS certificate, which comes for free through Let's Encrypt. Managed webhosting products usually come with their own Admin interface to obtain a certificate. However, if you need to do this manually via the command line (e.g. you're running a full server instead of a webhosting product), you should use `certbot` – which is a handy little command line tool that will obtain the certificate for you and also **automatically adjust your Nginx config accordingly**. However this part is not specific to Kirby – so any given [set of instructions](https://certbot.eff.org/instructions) for the usage of Let's Encrypt with Nginx and certbot should work.
165+
166+
----
167+
168+
Tags: deployment, development, webserver

content/docs/2_cookbook/9_setup/0_php-debugging-with-xdebug/cookbook-recipe.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -313,4 +313,7 @@ Description: Xdebug helps you track down errors in your PHP scripts. In this rec
313313

314314
----
315315

316-
Authors: - authors/sonja-broda
316+
Authors: - authors/sonja-broda
317+
318+
----
319+
Tags: development, debugging

0 commit comments

Comments
 (0)