Blame view

environments/index.php 2.48 KB
c237629a   Anastasia   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  <?php
  /**
   * The manifest of files that are local to specific environment.
   * This file returns a list of environments that the application
   * may be installed under. The returned data must be in the following
   * format:
   *
   * ```php
   * return [
   *     'environment name' => [
   *         'path' => 'directory storing the local files',
   *         'skipFiles'  => [
   *             // list of files that should only copied once and skipped if they already exist
   *         ],
   *         'setWritable' => [
   *             // list of directories that should be set writable
   *         ],
   *         'setExecutable' => [
   *             // list of files that should be set executable
   *         ],
   *         'setCookieValidationKey' => [
   *             // list of config files that need to be inserted with automatically generated cookie validation keys
   *         ],
   *         'createSymlink' => [
   *             // list of symlinks to be created. Keys are symlinks, and values are the targets.
   *         ],
   *     ],
   * ];
   * ```
   */
  return [
      'Development' => [
          'path' => 'dev',
          'setWritable' => [
              'backend/runtime',
              'backend/web/assets',
              'frontend/runtime',
              'frontend/web/assets',
              'storage',
              'storage/helper',
              
          ],
          'setExecutable' => [
              'yii',
              'yii_test',
          ],
          'setWritableFiles' => [
              'common/config/settings_lang.php',
              'common/config/settings.php',
              'common/config/mail.php',
              'common/config/sitemap.php',
              'frontend/web/sitemap.xml',
          ],
          'setCookieValidationKey' => [
              'backend/config/main-local.php',
              'frontend/config/main-local.php',
          ],
      ],
      'Production' => [
          'path' => 'prod',
          'setWritable' => [
              'backend/runtime',
              'backend/web/assets',
              'frontend/runtime',
              'frontend/web/assets',
              'storage',
              'storage/helper',
          ],
          'setExecutable' => [
              'yii',
          ],
          'setWritableFiles' => [
              'common/config/settings_lang.php',
              'common/config/settings.php',
              'common/config/mail.php',
              'common/config/sitemap.php',
              'frontend/web/sitemap.xml',
          ],
          'setCookieValidationKey' => [
              'backend/config/main-local.php',
              'frontend/config/main-local.php',
          ],
      ],
  ];