follow established naming convention

This commit is contained in:
jonathan@vulcanize.io
2024-03-13 16:21:29 +00:00
parent 821d401575
commit 06de4fe485
12 changed files with 2499 additions and 13 deletions
@@ -2,19 +2,19 @@
## Clone required repositories
```
$ laconic-so --stack blast setup-repositories
$ laconic-so --stack mainnet-blast setup-repositories
```
## Build the stack's containers
```
$ laconic-so --stack blast build-containers
$ laconic-so --stack mainnet-blast build-containers
```
## Create a deployment of the stack
```
$ laconic-so --stack blast deploy init --map-ports-to-host any-same --output blast-spec.yml
$ laconic-so --stack mainnet-blast deploy init --map-ports-to-host any-same --output blast-spec.yml
```
[Insert details on how to configure the stack]
```
$ laconic-so --stack blast deploy create --deployment-dir blast-deployment --spec-file blast-spec.yml
$ laconic-so --stack mainnet-blast deploy create --deployment-dir blast-deployment --spec-file blast-spec.yml
```
## Start the stack
```
@@ -32,9 +32,9 @@ def create(context, extra_args):
deploy_dir = context.deployment_dir.joinpath(mount_point)
command_context = extra_args[2]
compose_file = [f for f in command_context.cluster_context.compose_files if "blast" in f][0]
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "genesis.json")
compose_file = [f for f in command_context.cluster_context.compose_files if "mainnet-blast" in f][0]
source_config_file = Path(compose_file).parent.parent.joinpath("config", "mainnet-blast", "genesis.json")
copy(source_config_file, deploy_dir)
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "rollup.json")
source_config_file = Path(compose_file).parent.parent.joinpath("config", "mainnet-blast", "rollup.json")
copy(source_config_file, deploy_dir)
@@ -1,5 +1,5 @@
version: "1.0"
name: blast
name: mainnet-blast
description: "A blast stack"
repos:
- github.com/blast-io/blast
@@ -14,5 +14,5 @@ containers:
- cerc/lighthouse
- cerc/lighthouse-cli
pods:
- blast
- mainnet-blast
- mainnet-eth-keycloak