Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 8ee9722

Browse files
kmbremnerantonmedv
authored andcommitted
Update getting-started.md (#109)
Fix a few typos and improve readability.
1 parent 456a559 commit 8ee9722

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Open up a terminal in your project directory and run:
1515
dep init
1616
```
1717

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.
2020

2121
> You can call `dep` command in any subdirectory of your project.
2222
@@ -42,7 +42,7 @@ Hello world
4242
✔ Ok
4343
```
4444

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.
4646
Your newly created `deploy.php` file should contain a `host` declaration like this:
4747

4848
```php
@@ -71,7 +71,7 @@ Current dir: /var/www/domain.com
7171
✔ Ok
7272
```
7373

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:
7575

7676
```php
7777
set('repository', '[email protected]:username/repository.git');
@@ -87,7 +87,7 @@ host('domain.com')
8787
->set('shared_files', [...]);
8888
```
8989

90-
More about configuration can be found [here](configuration.md).
90+
Read more about [configuring](configuration.md) deploy.
9191

9292

9393
Now let's deploy our application:

0 commit comments

Comments
 (0)