-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.test
58 lines (43 loc) · 1.9 KB
/
.env.test
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
##############################################################################
# Layman settings ############################################################
##############################################################################
# dir where uploaded files are stored
LAYMAN_DATA_DIR=/layman_data_test
# name of python module with layman settings
LAYMAN_SETTINGS_MODULE=layman_settings
# name of python module for authorization
LAYMAN_AUTHZ_MODULE=layman.authz.read_everyone_write_everyone
# connection parameters to PostgreSQL database
LAYMAN_PG_HOST=postgresql
LAYMAN_PG_PORT=5432
LAYMAN_PG_DBNAME=layman_test
LAYMAN_PG_USER=docker
LAYMAN_PG_PASSWORD=docker
# connection parameters to GeoServer
LAYMAN_GS_HOST=geoserver
LAYMAN_GS_PORT=8080
LAYMAN_GS_PATH=/geoserver/
LAYMAN_GS_USER=layman_test
LAYMAN_GS_PASSWORD=laymanpwd
LAYMAN_GS_ROLE=LAYMAN_TEST_ROLE
# Celery settings
LAYMAN_CELERY_QUEUE=test
# Redis settings
LAYMAN_REDIS_URL=redis://redis:6379/15
# skip importing data into Redis
LAYMAN_SKIP_REDIS_LOADING=false
# docker names
LAYMAN_DOCKER_MAIN_SERVICE=layman_test_run_1
##############################################################################
# Flask settings #############################################################
##############################################################################
# See http://flask.pocoo.org/docs/1.0/quickstart/
FLASK_APP=src/layman
FLASK_ENV=development
# Flask secret_key, see http://flask.pocoo.org/docs/1.0/quickstart/#sessions
FLASK_SECRET_KEY=@E\xab\xf5\xddR\xa7\xfbO\xc7\xe3\x9d\x1e\xb4\x06\xe6\x18\x9eP\x18V(\tQ
##############################################################################
# Settings for specific dev and test commands ################################
##############################################################################
# PostGIS template database used to create empty testing database.
LAYMAN_PG_TEMPLATE_DBNAME=template_postgis