update env/cfg

This commit is contained in:
vvzvlad 2024-09-06 15:23:36 +03:00
parent ef4b04b30b
commit 20ae1db9fd
4 changed files with 13 additions and 15 deletions

7
.env Normal file
View File

@ -0,0 +1,7 @@
TOKEN=###TOKEN###
TRAINING_DAYS=###TRAINING_DAYS###
TIMEFRAME=###TIMEFRAME###
MODEL=###MODEL###
REGION=EU
DATA_PROVIDER=###DATA_PROVIDER###
CG_API_KEY=###CG_API_KEY###

View File

@ -1,7 +0,0 @@
TOKEN=
TRAINING_DAYS=
TIMEFRAME=
MODEL=
REGION=
DATA_PROVIDER=
CG_API_KEY=

2
.gitignore vendored
View File

@ -8,12 +8,10 @@ logs/*
inference-data inference-data
worker-data worker-data
config.json
/data /data
**/*.venv* **/*.venv*
**/.cache **/.cache
**/.env
**/env_file **/env_file
**/.gitkeep* **/.gitkeep*
**/*.csv **/*.csv

View File

@ -1,13 +1,13 @@
{ {
"wallet": { "wallet": {
"addressKeyName": "test", "addressKeyName": "###WALLET###",
"addressRestoreMnemonic": "", "addressRestoreMnemonic": "###MNEMONIC###",
"alloraHomeDir": "", "alloraHomeDir": "",
"gas": "auto", "gas": "auto",
"gasAdjustment": 1.5, "gasAdjustment": 1.5,
"nodeRpc": "https://allora-rpc.testnet.allora.network", "nodeRpc": "###RPC_URL###",
"maxRetries": 1, "maxRetries": 5,
"delay": 1, "delay": 10,
"submitTx": true "submitTx": true
}, },
"worker": [ "worker": [
@ -17,7 +17,7 @@
"loopSeconds": 5, "loopSeconds": 5,
"parameters": { "parameters": {
"InferenceEndpoint": "http://inference:8000/inference/{Token}", "InferenceEndpoint": "http://inference:8000/inference/{Token}",
"Token": "ETH" "Token": "###TOKEN###"
} }
} }
] ]