-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.test
103 lines (79 loc) · 3.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
##############################################################################
# Layman settings suitable for automatic tests ###############################
##############################################################################
# dir where uploaded files are stored
LAYMAN_DATA_DIR=/layman_data_test
# name of python module with layman settings
LAYMAN_SETTINGS_MODULE=layman_settings_test
# name of python module for authorization
LAYMAN_AUTHN_MODULES=
LAYMAN_AUTHN_OAUTH2_PROVIDERS=layman.authn.oauth2.liferay
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
# Flask-style server name (domain and port)
LAYMAN_SERVER_NAME=layman_test_run_1:8000
LAYMAN_PROXY_SERVER_NAME=layman_test_run_1:8000
# internal settings
LAYMAN_TIMGEN_URL=http://timgen:8080/
LAYMAN_CLIENT_URL=http://layman_client_test:3000/client/
# client
LAYMAN_CLIENT_VERSION=v1.0.0
##############################################################################
# Layman Test Client settings ################################################
##############################################################################
LTC_BASEPATH=/client
LTC_LAYMAN_USER_PROFILE_URL=http://layman_test_run_1:8000/rest/current-user
LTC_LAYMAN_REST_URL=http://layman_test_run_1:8000
LTC_REDIS_URI=redis://redis:6379/13
# python -c 'import os; import binascii; print(binascii.hexlify(os.urandom(32)))'
LTC_SESSION_SECRET=8caa4135d085c1c212bf8991a218cd3fb7766a2b03bc8639fd961144dbf3624f7edccba13a2d00cc
# 60 * 60 * 24 * 7 = 7 days
LTC_SESSION_MAX_AGE=604800
##############################################################################
# OAuth2 settings ############################################################
##############################################################################
OAUTH2_LIFERAY_CLIENT_ID=id-353ab09c-f117-f2d5-d3a3-85cfb89e6746
OAUTH2_LIFERAY_SECRET=secret-d31a82c8-3e73-1058-e38a-f9191f7c2014
OAUTH2_LIFERAY_CLIENT1_ID=test-id-for-client-with-pkce-flow
OAUTH2_LIFERAY_AUTH_URL=http://localhost:8082/o/oauth2/authorize
##############################################################################
# Micka settings #############################################################
##############################################################################
CSW_URL=http://micka:80/csw
CSW_PROXY_URL=http://localhost:3080/csw
CSW_BASIC_AUTHN=editor:editor
CSW_RECORD_URL=http://localhost:3080/record/basic/{identifier}
CSW_ORGANISATION_NAME_REQUIRED=
MICKA_HOSTPORT=
##############################################################################
# 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
# python -c 'import os; import binascii; print(binascii.hexlify(os.urandom(32)))'
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