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
{{ message }}
This repository was archived by the owner on Sep 16, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: getting-started.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ Open up a terminal in your project directory and run:
15
15
dep init
16
16
```
17
17
18
-
This command will create the `deploy.php` file in the current directory. It is called *recipe* and contains configuration and tasks for deployment.
19
-
By default all recipes extend the [common](https://github.com/deployphp/deployer/blob/master/recipe/common.php) recipe. Place your _deploy.php_ file in root of your project and type `dep` or `dep list` command you will see a list of all available tasks.
18
+
This command will create the `deploy.php` file in the current directory. It is called a *recipe* and contains configuration and tasks for deployment.
19
+
By default all recipes extend the [common](https://github.com/deployphp/deployer/blob/master/recipe/common.php) recipe. Place your _deploy.php_ file in root of your project and type `dep` or `dep list` command. You will see a list of all available tasks.
20
20
21
21
> You can call `dep` command in any subdirectory of your project.
22
22
@@ -42,7 +42,7 @@ Hello world
42
42
✔ Ok
43
43
```
44
44
45
-
Now lets create some task which will run commands on a remote host. For that we must configure deployer.
45
+
Now let's create a task which will run commands on a remote host. For that we must configure deployer.
46
46
Your newly created `deploy.php` file should contain a `host` declaration like this:
47
47
48
48
```php
@@ -71,7 +71,7 @@ Current dir: /var/www/domain.com
71
71
✔ Ok
72
72
```
73
73
74
-
Now lets prepare for our first deploy. You need to configure parameters such as `repository`, `shared_files,` and others:
74
+
Now let's prepare for our first deploy. You need to configure parameters such as `repository`, `shared_files,` and others:
0 commit comments