Commit 30ec140856056b5b723163e46d76d66fe56f0819

Authored by Yarik
1 parent 040c92b7

Settings to gitignore

.gitignore
... ... @@ -34,4 +34,5 @@ phpunit.phar
34 34 # vagrant runtime
35 35 /.vagrant
36 36 /artweb/
37   -/storage
38 37 \ No newline at end of file
  38 +/storage
  39 +/common/config/settings.php
... ...
environments/dev/common/config/settings.php 0 → 100755
  1 +<?php
  2 +
  3 + return [
  4 + 1 => [
  5 + 'phone' => '',
  6 + 'phone2' => '',
  7 + 'skype' => '',
  8 + 'email' => '',
  9 + 'house' => '',
  10 + 'street' => '',
  11 + 'office' => '',
  12 + 'city' => '',
  13 + 'country' => '',
  14 + 'lat' => '',
  15 + 'lon' => '',
  16 + 'facebook' => '',
  17 + 'vk' => '',
  18 + 'ok' => '',
  19 + 'google' => '',
  20 + 'twitter' => '',
  21 + 'name' => '',
  22 + 'logo' => '',
  23 + 'about' => '',
  24 + 'analytics_key' => '',
  25 + 'robots' => '',
  26 + 'ga_code' => '',
  27 + 'ya_code' => '',
  28 + 'tag_manager' => '',
  29 + 'id' => 1,
  30 + ],
  31 + ];
0 32 \ No newline at end of file
... ...
environments/prod/common/config/settings.php 0 → 100755
  1 +<?php
  2 +
  3 + return [
  4 + 1 => [
  5 + 'phone' => '',
  6 + 'phone2' => '',
  7 + 'skype' => '',
  8 + 'email' => '',
  9 + 'house' => '',
  10 + 'street' => '',
  11 + 'office' => '',
  12 + 'city' => '',
  13 + 'country' => '',
  14 + 'lat' => '',
  15 + 'lon' => '',
  16 + 'facebook' => '',
  17 + 'vk' => '',
  18 + 'ok' => '',
  19 + 'google' => '',
  20 + 'twitter' => '',
  21 + 'name' => '',
  22 + 'logo' => '',
  23 + 'about' => '',
  24 + 'analytics_key' => '',
  25 + 'robots' => '',
  26 + 'ga_code' => '',
  27 + 'ya_code' => '',
  28 + 'tag_manager' => '',
  29 + 'id' => 1,
  30 + ],
  31 + ];
0 32 \ No newline at end of file
... ...