forked from linuxfrorg/linuxfr.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.env
More file actions
29 lines (24 loc) · 869 Bytes
/
default.env
File metadata and controls
29 lines (24 loc) · 869 Bytes
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
# LinuxFr configuration
DOMAIN=dlfp.lo
IMAGE_DOMAIN=image.dlfp.lo
# Redis service is used as a caching service and a publish/subscribe service
# to allow the different LinuxFr tools work together
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_URL=redis://redis:6379/0
# For the mariadb docker image configuration, see: https://hub.docker.com/_/mariadb
MYSQL_RANDOM_ROOT_PASSWORD=true
# Developement environment
MYSQL_HOST=database
MYSQL_DATABASE=linuxfr_rails
MYSQL_USER=linuxfr_rails
MYSQL_PASSWORD=linuxfr_rails
# Test environement
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
MYSQL_TEST_HOST=database-test
MYSQL_TEST_DATABASE=linuxfr_test
MYSQL_TEST_USER=linuxfr_test
MYSQL_TEST_PASSWORD=linuxfr_test
RAILS_ENV=development