[ * 'path' => 'directory storing the local files', * 'writable' => [ * // list of directories that should be set writable * ], * ], * ]; * ``` */ return [ 'Development' => [ 'path' => 'dev', 'writable' => [ 'backend/runtime', 'backend/web/assets', 'frontend/runtime', 'frontend/web/assets', ], 'executable' => [ 'yii', ], ], 'Production' => [ 'path' => 'prod', 'writable' => [ 'backend/runtime', 'backend/web/assets', 'frontend/runtime', 'frontend/web/assets', ], 'executable' => [ 'yii', ], ], ];