Commit 3d9d5fda authored by Nicolas Widart's avatar Nicolas Widart

Launching the install command as post create project

parent 4c66cf43
......@@ -62,7 +62,8 @@
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
"php artisan key:generate",
"php artisan platform:install"
]
},
"config": {
......
......@@ -17,7 +17,11 @@ This is the core repository for the CMS. The admin is fully translatable in Engl
composer create-project emulsion/platform your-project-name --prefer-dist --stability=dev
```
### Run the install command
### Run composer install
Run the usual `composer install` to get the dependencies.
A `platform:install` command will run as a *post create project* command.
This install command will perform the following actions:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment