Skip to content

Commit

Permalink
Update environment variables for Getting Started (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-vl authored Jan 15, 2025
1 parent 4d2bb9f commit fb1925b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2023-2024 Volkov Labs. All rights reserved.
Copyright (C) 2023-2025 Volkov Labs. All rights reserved.

Please read this End-User License Agreement carefully before downloading or using Business Intelligence for Grafana.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ The Business Intelligence platform utilize Docker containers to be modular and s

### Grafana

1. Start Grafana container
1. Start Grafana container and login as admin user with 'admin' password:

```
docker compose --profile grafana up -d
```

2. Create Service Account and update `GRAFANA_TOKEN` in the `.env` file
2. Create Service Account and update `GRAFANA_TOKEN` in the `docker-compose.yml` file

### Business Engine

Expand Down
10 changes: 9 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,15 @@ services:
depends_on:
- timescale
image: ghcr.io/volkovlabs/business-engine:2.2.0
env_file: .env
#env_file: .env
environment:
DATABASE_HOST: timescale
DATABASE_PORT: 5432
DATABASE_DB: postgres
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
GRAFANA_URL: http://grafana:3000
GRAFANA_TOKEN: SERVICE-ACCOUNT-TOKEN
ports:
- 3001:3001
- 3002:3002
Expand Down

0 comments on commit fb1925b

Please sign in to comment.