This repository was archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-dev.conf
More file actions
42 lines (32 loc) · 1.43 KB
/
docker-dev.conf
File metadata and controls
42 lines (32 loc) · 1.43 KB
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
#SERVER_NAME = '127.0.0.1:5000'
# this is the session secret, used to protect the Flask session. You should
# use a longer secret string known only to your application
# details are beyond the scope of this example
SECRET_KEY = 'abc123!'
ENABLE_AUTH=False
# Based on https://codeburst.io/jwt-authorization-in-flask-c63c1acf4eeb
SQLALCHEMY_DATABASE_URI = 'sqlite:////sqlite/app.db'
SQLALCHEMY_TRACK_MODIFICATIONS = False
SECRET_KEY = 'some-secret-string'
JWT_SECRET_KEY = 'jwt-secret-string'
RABBIT_MQ_URL= 'amqp://user:leftfoot1@host.docker.internal:30672/%2F'
ADVERTISED_HOSTNAME = 'host.docker.internal:5000'
# Keep retrying every ten seconds for two minutes before giving up
RABBIT_RETRIES = 12
RABBIT_RETRY_INTERVAL = 10
# This will be mounted into the transformer pod's /data directory
TRANSFORMER_LOCAL_PATH="/Users/bengal1/dev/IRIS-HEP/data"
TRANSFORMER_NAMESPACE="default"
TRANSFORMER_X509_SECRET="servicex-x509-proxy"
TRANSFORMER_PULL_POLICY="IfNotPresent"
TRANSFORMER_VALIDATE_DOCKER_IMAGE = True
ADVERTISED_HOSTNAME= 'host.docker.internal:5000'
TRANSFORMER_MANAGER_ENABLED = False
TRANSFORMER_AUTOSCALE_ENABLED = False
TRANSFORMER_DEFAULT_IMAGE = "sslhep/servicex_func_adl_xaod_transformer:v1.0.0-rc.3"
TRANSFORMER_MESSAGING = 'none'
OBJECT_STORE_ENABLED = False
CODE_GEN_SERVICE_URL = 'http://localhost:5001'
CODE_GEN_IMAGE = "sslhep/servicex_code_gen_func_adl_xaod:develop"
DID_FINDER_DEFAULT_SCHEME = 'rucio'
VALID_DID_SCHEMES = ['rucio']