Skip to content

Commit

Permalink
fix: fix logging endpoint (#133)
Browse files Browse the repository at this point in the history
* fix: fix logging endpoint

* fix: use correct env file

* fix: makefile use correct services

---------

Co-authored-by: tedbee <tedbee@tensorplex.ai>
Co-authored-by: jarvis8x7b <157810922+jarvis8x7b@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 18, 2025
1 parent 6e36f82 commit 91b94fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ LANGFUSE_PUBLIC_KEY=
LANGFUSE_HOST="https://us.cloud.langfuse.com" # 🇺🇸 US region
VALIDATOR_API_BASE_URL=https://dojo-validator-api.tensorplex.ai

DOJO_LOKI_URL=https://dojo-logs.tensorplex.ai
DOJO_LOKI_URL=http://logging.internal
# hotkey for loki external label
VALIDATOR_HOTKEY=

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ validator:
docker compose -f docker-compose.validator.yaml up -d validator

validator-up-deps:
docker compose -f docker-compose.validator.yaml up -d --build synthetic-api postgres-vali prisma-setup-vali
docker compose -f docker-compose.validator.yaml up -d --build synthetic-api postgres prisma-setup-vali

dojo-platform:
docker compose -f docker-compose.platform.yaml up -d
Expand Down Expand Up @@ -118,4 +118,4 @@ watchtower:
docker compose -f docker-compose.shared.yaml up -d watchtower

watchtower-down:
docker compose -f docker-compose.shared.yaml down watchtower
docker compose -f docker-compose.shared.yaml down watchtower
4 changes: 2 additions & 2 deletions docker-compose.validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@ services:
container_name: fill-score-column
image: ghcr.io/tensorplex-labs/dojo:main
env_file:
- .env.validator
- .env
command: ["fill-score-column"]
networks:
- dojo-validator
volumes:
- ./:/app
- ./.env.validator:/app/.env
- ./.env:/app/.env
- prisma-binary:/root/prisma-python
- $HOME/.bittensor:/root/.bittensor
logging: *default-logging

0 comments on commit 91b94fa

Please sign in to comment.