-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
68 lines (61 loc) · 1.54 KB
/
.env
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
# Description: Environment variables for development environment
# Data Ingestion
## API
DATA_INGESTION_PROTOCOL=http
DATA_INGESTION_HOST=localhost
DATA_INGESTION_PORT=8200
DATA_INGESTION_ENDPOINT_FBREF=fbref
DATA_INGESTION_ENDPOINT_THE_ODDS_API_ODDS=the_odds_api/odds
DATA_INGESTION_ENDPOINT_SOFIFA_TEAMS_STATS=sofifa/team_stats
## Other
SOCCERDATA_DIR=lib/soccerdata
# Pipelines
## API
PIPELINES_PROTOCOL=http
PIPELINES_HOST=localhost
PIPELINES_PORT=8201
PIPELINES_ENDPOINT_INFERENCE=infer/RSF_PR_LR
PIPELINES_ENDPOINT_OPTIMIZATION=optim
# MLFLOW
## API
MLFLOW_PROTOCOL=http
MLFLOW_HOST=localhost
MLFLOW_PORT=8202
# App-backend
## API
APP_BACKEND_PROTOCOL=http
APP_BACKEND_HOST=localhost
APP_BACKEND_PORT=8203
APP_BACKEND_ENDPOINT_COMPUTE_PREDICTIONS=compute/predictions
APP_BACKEND_ENDPOINT_FETCH_LAST_PREDICTIONS=fetch/last_predictions
# App-frontend
## API
APP_FRONTEND_PROTOCOL=http
APP_FRONTEND_URL=localhost
APP_FRONTEND_PORT=8204
# DATABASE
## API
DB_TYPE=postgresql
DB_PILOT=psycopg2
# DB_USER=Consultant # Old db
# DB_HOST=soccerodds-psql-db.postgres.database.azure.com
# DB_PORT=5432
DB_USER=kube
DB_HOST=localhost
DB_PORT=8110
## Structure
DB_NAME=postgres
DB_TN_MATCHES=matches
DB_TN_ODDS_EURO=odds_euro
DB_TN_MATCHES_EURO=matches_euro
DB_TN_MIGRATION_HISTORY=migration_history
DB_TN_MATCHES_BIG5=matches_big5
DB_TN_MATCHES_WC=matches_wc
DB_TN_FBREF_RESULTS=fbref_results
DB_TN_SOFIFA_TEAMS_STATS=sofifa_teams_stats
DB_TN_MODELS_RESULTS=models_results
DB_TN_LOGS=logs
DB_TN_ODDS=soccer_odds
DB_TN_OPTIM_RESULTS=optim_results
# Airflow
AIRFLOW_UID=3568787