Skip to content

Commit dfd888b

Browse files
committed
Added clarification of where executables are.
1 parent 4d1e502 commit dfd888b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,22 @@ This library allows you to do these two thing. All environment settings can be s
2222
Example usage for people who don't like reading instructions
2323
------------------------------------------------------------
2424

25+
If you install Configurator through Composer, the executable files will be in the vendor bin directory and can be run with:
26+
2527
```
2628
#Generate nginx config file for the centos,dev environment
27-
bin/configurate -p example/config.php example/config_template/nginx.conf.php autogen/nginx.conf "centos,dev"
29+
vendor/bin/configurate -p example/config.php example/config_template/nginx.conf.php autogen/nginx.conf "centos,dev"
2830
2931
# Generate a PHP file that contains a function that return the current application env settings
30-
bin/genenv -p example/config.php example/envRequired.php autogen/appEnv.php "centos,dev"
32+
vendor/bin/genenv -p example/config.php example/envRequired.php autogen/appEnv.php "centos,dev"
3133
3234
# Convert a PHP ini file to be in the PHP-FPM format
33-
bin/fpmconv autogen/php.ini autogen/php.fpm.ini
35+
vendor/bin/fpmconv autogen/php.ini autogen/php.fpm.ini
3436
```
3537

3638

39+
40+
3741
Config file generator
3842
---------------------
3943

0 commit comments

Comments
 (0)