fix env file for travis
This commit is contained in:
@@ -10,7 +10,8 @@ addons:
|
|||||||
before_install:
|
before_install:
|
||||||
- mysql -e 'CREATE DATABASE IF NOT EXISTS phpvms;'
|
- mysql -e 'CREATE DATABASE IF NOT EXISTS phpvms;'
|
||||||
before_script:
|
before_script:
|
||||||
- cp .travis/env.travis .env
|
#- cp .travis/env.travis .env
|
||||||
|
- cp .travis/env.travis.php env.php
|
||||||
- composer install --no-interaction
|
- composer install --no-interaction
|
||||||
script:
|
script:
|
||||||
- php artisan database:create --reset
|
- php artisan database:create --reset
|
||||||
|
|||||||
30
.travis/env.travis.php
Normal file
30
.travis/env.travis.php
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
exit();
|
||||||
|
?>
|
||||||
|
|
||||||
|
APP_ENV=dev
|
||||||
|
APP_KEY=base64:zdgcDqu9PM8uGWCtMxd74ZqdGJIrnw812oRMmwDF6KY=
|
||||||
|
APP_URL=http://localhost
|
||||||
|
APP_SKIN=default
|
||||||
|
APP_DEBUG=true
|
||||||
|
APP_LOCALE=en
|
||||||
|
|
||||||
|
PHPVMS_INSTALLED=true
|
||||||
|
VACENTRAL_API_KEY=
|
||||||
|
|
||||||
|
APP_LOG=daily
|
||||||
|
APP_LOG_LEVEL=debug
|
||||||
|
APP_LOG_MAX_FILES=3
|
||||||
|
|
||||||
|
DB_CONNECTION=mysql
|
||||||
|
DB_HOST=127.0.0.1
|
||||||
|
DB_PORT=3306
|
||||||
|
DB_DATABASE=phpvms
|
||||||
|
DB_USERNAME=root
|
||||||
|
DB_PASSWORD=
|
||||||
|
|
||||||
|
CACHE_DRIVER=file
|
||||||
|
CACHE_PREFIX=
|
||||||
|
|
||||||
|
SESSION_DRIVER=file
|
||||||
|
QUEUE_DRIVER=database
|
||||||
Reference in New Issue
Block a user