Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use on chain nav values for asset prices for markers #556

Merged
merged 18 commits into from
Oct 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
revert db port changes used for testing
nullpointer0x00 committed Oct 11, 2024
commit 05597a6d2f3a5899ca5b8f4f3a487c37687a89f7
2 changes: 1 addition & 1 deletion docker/docker-compose-db.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ services:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password1
ports:
- 5430:5432
- 5432:5432
volumes:
- ./db-init:/docker-entrypoint-initdb.d/ # inits the db with username/password
- pg-local-testnet:/var/lib/postgresql/data
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ services:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password1
ports:
- 5430:5432
- 5432:5432

explorer-service:
image: provenanceio/explorer-service:latest
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ service.environment=development

spring.datasource.username=postgres
spring.datasource.password=password1
spring.datasource.url=jdbc:postgresql://localhost:5430/explorer
spring.datasource.url=jdbc:postgresql://localhost:5432/explorer
spring.datasource.hikari.schema=explorer
spring.datasource.hikari.maximum-pool-size=40