File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
firefly-cardanoconnect/src Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ The easier way to get started is to use Docker compose to build your entire clus
27
27
# To compose a cluster using Blockfrost as a backing store
28
28
BLOCKFROST_KEY=previewXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX docker compose -f infra/docker-compose.yaml up --build -d
29
29
30
+ # If you are running your own Blockfrost instance, you can pass the url
31
+ BLOCKFROST_BASE_URL=https://localhost:3000 docker compose -f infra/docker-compose.yaml up --build -d
32
+
30
33
# To create a cluster with a local cardano node (takes longer to spin up)
31
34
docker compose -f infra/docker-compose.node.yaml up --build -d
32
35
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ use crate::{
15
15
pub struct CardanoConnectConfig {
16
16
pub api : ApiConfig ,
17
17
pub connector : ConnectorConfig ,
18
+ pub contracts : Option < ContractsConfig > ,
18
19
#[ serde( default ) ]
19
20
pub http : HttpClientConfig ,
20
21
pub log : LogConfig ,
21
22
#[ serde( default ) ]
22
23
pub persistence : PersistenceConfig ,
23
- pub contracts : Option < ContractsConfig > ,
24
24
}
25
25
26
26
#[ derive( Debug , Deserialize ) ]
You can’t perform that action at this time.
0 commit comments