Browse Source

copy production config to config.php

pull/39/head
Aaron Parecki 8 years ago
parent
commit
0fde8190f5
3 changed files with 7 additions and 0 deletions
  1. +1
    -0
      .travis.yml
  2. +1
    -0
      composer.json
  3. +5
    -0
      config.production.php

+ 1
- 0
.travis.yml View File

@ -8,6 +8,7 @@ before_script:
before_install:
- openssl aes-256-cbc -K $encrypted_e44c58426490_key -iv $encrypted_e44c58426490_iv
-in XRay-67d8fdd0bba3.json.enc -out XRay-67d8fdd0bba3.json -d
- cp config.production.php config.php
deploy:
skip_cleanup: true
provider: gae

+ 1
- 0
composer.json View File

@ -7,6 +7,7 @@
},
"autoload": {
"files": [
"config.php",
"lib/helpers.php",
"controllers/Main.php",
"controllers/Parse.php",

+ 5
- 0
config.production.php View File

@ -0,0 +1,5 @@
<?php
class Config {
public static $base = 'https://xray.p3k.io';
public static $cache = true;
}

Loading…
Cancel
Save