mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
Fix circle
This commit is contained in:
parent
dc2b72670a
commit
93557dfa67
4 changed files with 9 additions and 1 deletions
|
@ -4,14 +4,17 @@ references:
|
|||
default_docker_ruby_executor: &default_docker_ruby_executor
|
||||
image: circleci/ruby:2.6.5-buster-node-browsers
|
||||
environment:
|
||||
BUNDLE_JOBS: '3'
|
||||
BUNDLE_RETRY: '3'
|
||||
BUNDLE_PATH: vendor/bundle
|
||||
RACK_ENV: test
|
||||
RAILS_ENV: test
|
||||
MYSQL_HOST: '127.0.0.1'
|
||||
mariadb: &mariadb
|
||||
image: circleci/mariadb:10.1.44
|
||||
environment:
|
||||
MYSQL_DATABASE: ensl_test
|
||||
MYSQL_USER: ensl
|
||||
MYSQL_USERNAME: ensl
|
||||
MYSQL_PASSWORD: ensl
|
||||
MYSQL_ROOT_PASSWORD: ensl
|
||||
MYSQL_ROOT_HOST: "%"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This file is actually loaded by Dotenv when RAILS_ENV=development
|
||||
|
||||
RACK_ENV=development
|
||||
RAILS_ENV=development
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# Read https://github.com/bkeepers/dotenv
|
||||
# This is just a sample file
|
||||
|
||||
# Change this depending where you are
|
||||
RACK_ENV=production
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This file is actually loaded by Dotenv when RAILS_ENV=test
|
||||
|
||||
RACK_ENV=test
|
||||
RAILS_ENV=test
|
||||
|
||||
|
|
Loading…
Reference in a new issue