Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Tekill committed May 13, 2017
1 parent 59de8c6 commit 9881936
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 1.0.0 (2017-05-14)

Initial release of the library.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,31 @@ composer install tekill/env-diff

## Manual running
### Actualize variables
Compare `.env` with `.env.dist` and add missing variables to `.env` file
Compare `.env` with `.env.dist` and add missing variables to `.env` file.
```
php ./vendor/bin/env-diff actualize
```

Compare `.env` with `.env.example` and add missing variables to `.env` file
Compare `.env` with `.env.example` and add missing variables to `.env` file.
```
php ./vendor/bin/env-diff actualize .env.example
```

Compare `.env-target` with `.env.example` and add missing variables to `.env-target` file
Compare `.env-target` with `.env.example` and add missing variables to `.env-target` file.
```
php ./vendor/bin/env-diff actualize .env.example .env-target
```

If you want to delete outdated values just run command with `-k=false` option
If you want to delete outdated values just run command with `-k=false` option.

```
php ./vendor/bin/env-diff actualize -k=false
```

### Show differences
Command has same interface, arguments and options
Command has same interface, arguments and options.

Compare `.env` with `.env.dist` and show differences between them
Compare `.env` with `.env.dist` and show differences between them.
```
php ./vendor/bin/env-diff diff
```
Expand Down

0 comments on commit 9881936

Please sign in to comment.