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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-eclesia-indexer",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "CLI tool to scaffold Cosmos SDK chain indexers using eclesia-indexer-core",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,6 +10,7 @@ PG_CONNECTION_STRING={{PG_CONNECTION_STRING}}
10
10
  LOG_LEVEL={{LOG_LEVEL}}
11
11
  QUEUE_SIZE={{QUEUE_SIZE}}
12
12
  PROCESS_GENESIS={{PROCESS_GENESIS}}
13
+ MINIMAL={{MINIMAL}}
13
14
  CHAIN_PREFIX={{CHAIN_PREFIX}}
14
15
  USE_POLLING={{USE_POLLING}}
15
16
 
@@ -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 -t {{PROJECT_NAME}} .",
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
  },