Commit 1ed02180 by Alexander Makarov

Merge pull request #3235 from crtlib/patch-5

setting writable folders in init-script
parents e8caad24 a0d9641f
......@@ -43,9 +43,6 @@
"backend/runtime",
"backend/web/assets",
"console/runtime",
"console/migrations",
"frontend/runtime",
"frontend/web/assets"
]
......
......@@ -20,7 +20,10 @@ return [
'Development' => [
'path' => 'dev',
'writable' => [
// handled by composer.json already
'backend/runtime',
'backend/web/assets',
'frontend/runtime',
'frontend/web/assets',
],
'executable' => [
'yii',
......@@ -29,7 +32,10 @@ return [
'Production' => [
'path' => 'prod',
'writable' => [
// handled by composer.json already
'backend/runtime',
'backend/web/assets',
'frontend/runtime',
'frontend/web/assets',
],
'executable' => [
'yii',
......
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