@@ -1,12 +1,11 @@
-Packagist
-=========
-
-Package Repository Website for Composer
-Installation
-------------
-- Clone the repository
-- Run `bin/vendors install` to get all the vendors.
-- Copy `app/config/parameters.ini.dist` to `app/config/parameters.ini` and edit
- relevant values for your setup.
+Packagist
+=========
+
+Package Repository Website for Composer
+Installation
+------------
+- Clone the repository
+- Run `bin/vendors install` to get all the vendors.
+- Open `app/config/parameters.ini` and edit the relevant values for your setup.
@@ -36,6 +36,10 @@ if (!is_dir($vendorDir)) {
mkdir($vendorDir, 0777, true);
}
+if (!file_exists($rootDir.'/app/config/parameters.ini')) {
+ copy($rootDir.'/app/config/parameters.ini.dist', $rootDir.'/app/config/parameters.ini');
+}
// versions
$versions = array();
if ('install' === $command && file_exists($rootDir.'/deps.lock')) {