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