create-eclesia-indexer 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -22,6 +22,7 @@ services:
|
|
|
22
22
|
- PG_CONNECTION_STRING=postgres://postgres:password@postgres:5432/indexer
|
|
23
23
|
- LOG_LEVEL={{LOG_LEVEL}}
|
|
24
24
|
- USE_POLLING={{USE_POLLING}}
|
|
25
|
+
- MINIMAL={{MINIMAL}}
|
|
25
26
|
- QUEUE_SIZE={{QUEUE_SIZE}}
|
|
26
27
|
- PROCESS_GENESIS={{PROCESS_GENESIS}}
|
|
27
28
|
- CHAIN_PREFIX={{CHAIN_PREFIX}}
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
11
11
|
"start": "node dist/index.js",
|
|
12
12
|
"dev": "tsx watch src/index.ts",
|
|
13
|
-
"docker:build": "docker build -
|
|
14
|
-
"docker:run": "docker run --env-file .env {{PROJECT_NAME}}",
|
|
13
|
+
"docker:build": "docker compose build --no-cache",
|
|
15
14
|
"local-dev:start": "docker compose up -d",
|
|
16
15
|
"local-dev:stop": "docker compose down"
|
|
17
16
|
},
|