Should create a basic file structure:
/myProject
/www
/config
/modules
Should also create an example config for the desired web server (-s apache) with correct paths etc so it can be copy pasted:
ServerName example.com
DocumentRoot /my/path/myProject/www
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}%{SCRIPT_FILENAME} !-f
RewriteRule ^.$ /deployer.php [QSA]
Should create a basic file structure:
/myProject
/www
/config
/modules
Should also create an example config for the desired web server (-s apache) with correct paths etc so it can be copy pasted:
ServerName example.com DocumentRoot /my/path/myProject/www RewriteEngine on RewriteCond %{DOCUMENT_ROOT}%{SCRIPT_FILENAME} !-f RewriteRule ^.$ /deployer.php [QSA]