Skip to content

Commit 89bfbe6

Browse files
bastianallgeiertexnixe
authored andcommitted
Small indentation fix
1 parent c89822f commit 89bfbe6

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

+11-11
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ If you already have a existing Kirby project (Starterkit or your own project), y
5252
ddev config --php-version=8.3 --omit-containers=db
5353
```
5454
 
55-
You can run `ddev config` without any options, in that case the default config settings are used. Here, however, we tell DDEV
55+
You can run `ddev config` without any options, in that case the default config settings are used. Here, however, we tell DDEV
5656
* that we want to use PHP 8.3 (which is the most current actively supported PHP version at the time of writing). If you want to run on another version, adapt this flag accordingly.
5757
* that we want to omit spinning up a database container. Since Kirby is a flat file system that doesn't rely on a database, we don't need this container.
58-
58+
5959
After you have run this command, you will find a `.ddev` folder inside your project folder. You might want to take a peak at the `config.yml` file in that folder. This gives you an idea of available config options and includes detailed explanations.
6060

6161

@@ -87,14 +87,14 @@ That was quick, right?
8787
Alternatively, we can create a new Kirby project from scratch. Here are the steps:
8888

8989
1. Create a new project folder and use the `cd` command to navigate into it.
90-
2. Inside the project folder, run the following commands one after the other:
90+
2. Inside the project folder, run the following commands one after the other:
9191

92-
```bash
93-
ddev config --php-version=8.3 --omit-containers=db
94-
ddev start
95-
ddev composer create getkirby/starterkit
96-
ddev launch
97-
```
92+
```bash
93+
ddev config --php-version=8.3 --omit-containers=db
94+
ddev start
95+
ddev composer create getkirby/starterkit
96+
ddev launch
97+
```
9898

9999
 
100100
Only the third command is new, the other three we have already used above. With `ddev composer` we execute a composer command within the web container. `ddev composer create` is a special command that is adapted from `composer create-project`. Here we create a new Kirby Starterkit project in the current directory.
@@ -151,9 +151,9 @@ Note that each project on your computer must use different ports, or you will ru
151151
</info>
152152
## Server configuration
153153

154-
By default, DDEV runs on Nginx. The default Nginx configuration will usually work fine with Kirby. However, it does not protect the `content`, `site` or `kirby` folders, like Kirby's `.htaccess` configuration does for Apache.
154+
By default, DDEV runs on Nginx. The default Nginx configuration will usually work fine with Kirby. However, it does not protect the `content`, `site` or `kirby` folders, like Kirby's `.htaccess` configuration does for Apache.
155155

156-
In a development environment, this should not be a problem. If you want to protect your folders nonetheless, you can change the default Nginx configuration.
156+
In a development environment, this should not be a problem. If you want to protect your folders nonetheless, you can change the default Nginx configuration.
157157

158158
In `.ddev/nginx_full/nginx-site.conf` delete the line
159159

0 commit comments

Comments
 (0)