-
Notifications
You must be signed in to change notification settings - Fork 13
/
env-file-for-local.dev
71 lines (61 loc) · 1.78 KB
/
env-file-for-local.dev
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
# copy this file to .env
# cp env-file-for-local.dev .env
DOMAIN=localhost
DOCKER_IMAGE_BACKEND=dimfrag/nef-backend
BACKEND_TAG=1.0
DOCKER_IMAGE_FRONTEND=frontend
# Backend
SERVER_NAME=localhost
SERVER_HOST=localhost
SERVER_PORT=8888
BACKEND_CORS_ORIGINS=["https://5g-api-emulator.medianetlab.eu","http://localhost"]
PROJECT_NAME=NEF_Emulator
SECRET_KEY=2D47CF2958CEC7CC86C988E9F9684
FIRST_SUPERUSER_PASSWORD=pass
SMTP_TLS=True
SMTP_PORT=465
SMTP_HOST=mail.host.com
SMTP_USER=user
SMTP_PASSWORD=pass
SENTRY_DSN=
USERS_OPEN_REGISTRATION=true
NEF_HOST=3gppnef
# Postgres
# info: POSTGRES_USER value ('postgres') is hard-coded in /pgadmin/servers.json
POSTGRES_SERVER=db
POSTGRES_USER=postgres
POSTGRES_PASSWORD=pass
POSTGRES_DB=app
# PgAdmin
PGADMIN_LISTEN_PORT=5050
PGADMIN_DEFAULT_PASSWORD=pass
# Mongo
MONGO_USER=root
MONGO_PASSWORD=pass
MONGO_CLIENT=mongodb://mongo_nef:27017/
# MongoExpress
MONGO_EXPRESS_ENABLE_ADMIN=true
#Nginx
DOCKER_IMAGE_PROXY=dimfrag/nef-nginx
PROXY_TAG=1.0
NGINX_HTTP=8090
NGINX_HTTPS=4443
NGINX_HOST=127.0.0.1
# CAPIF
# Compose Networking
# If CAPIF CORE FUNCTION is up and running set EXTERNAL_NET to true
# Else if NEF is used as a standalone service set EXTERNAL_NET to false
CAPIF_HOST=capifcore
CAPIF_HTTP_PORT=8080
CAPIF_HTTPS_PORT=443
EXTERNAL_NET=true
#Public Certificate for verifing access token
USE_PUBLIC_KEY_VERIFICATION=true
#Service Description files for K8s deployment
#If you want use domainName in service descritpion files turn production to true and specify the domainName variable
#Else interfaceDescriptions (ipv4, port) will be used in the service descritpion files declared in NGINX_HOST, NGINX_HTTPS variables
PRODUCTION=true
DOMAIN_NAME=nefemu.com