-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dboreham/test-database-stack
- Loading branch information
Showing
14 changed files
with
127 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: "3.2" | ||
|
||
services: | ||
mars: | ||
image: cerc/mars:local | ||
restart: always | ||
ports: | ||
- "3000:3000" | ||
environment: | ||
- URL_OSMOSIS_GQL=https://osmosis-node.marsprotocol.io/GGSFGSFGFG34/osmosis-hive-front/graphql | ||
- URL_OSMOSIS_REST=https://lcd-osmosis.blockapsis.com | ||
- URL_OSMOSIS_RPC=https://rpc-osmosis.blockapsis.com | ||
- URL_NEUTRON_GQL=https://neutron.rpc.p2p.world/qgrnU6PsQZA8F9S5Fb8Fn3tV3kXmMBl2M9bcc9jWLjQy8p/hive/graphql | ||
- URL_NEUTRON_REST=https://rest-kralum.neutron-1.neutron.org | ||
- URL_NEUTRON_RPC=https://rpc-kralum.neutron-1.neutron.org | ||
- URL_NEUTRON_TEST_GQL=https://testnet-neutron-gql.marsprotocol.io/graphql | ||
- URL_NEUTRON_TEST_REST=https://rest-palvus.pion-1.ntrn.tech | ||
- URL_NEUTRON_TEST_RPC=https://rpc-palvus.pion-1.ntrn.tech | ||
- WALLET_CONNECT_ID=0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3.2" | ||
|
||
services: | ||
ping-pub: | ||
image: cerc/ping-pub:local | ||
restart: always | ||
ports: | ||
- "5173:5173" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ services: | |
environment: | ||
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG} | ||
ports: | ||
- "3000" | ||
- "80" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
# Build the mars image | ||
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh | ||
docker build -t cerc/mars:local -f ${CERC_REPO_BASE_DIR}/mars-interface/Dockerfile ${build_command_args} ${CERC_REPO_BASE_DIR}/mars-interface |
5 changes: 5 additions & 0 deletions
5
stack_orchestrator/data/container-build/cerc-ping-pub/build.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# Build the ping pub image | ||
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh | ||
|
||
docker build -t cerc/ping-pub:local ${build_command_args} -f $CERC_REPO_BASE_DIR/explorer/Dockerfile $CERC_REPO_BASE_DIR/explorer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# mars | ||
|
||
On a fresh Digital Ocean droplet with Ubuntu: | ||
|
||
``` | ||
git clone https://github.com/cerc-io/stack-orchestrator | ||
cd stack-orchestrator | ||
./scripts/quick-install-linux.sh | ||
``` | ||
Read and follow the instructions output from the above output to complete installation, then: | ||
|
||
``` | ||
laconic-so --stack mars setup-repositories | ||
laconic-so --stack mars build-containers | ||
laconic-so --stack mars deploy up | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "0.1" | ||
name: mars | ||
repos: | ||
- github.com/cerc-io/mars-interface | ||
containers: | ||
- cerc/mars | ||
pods: | ||
- mars |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# ping-pub | ||
Experimental block explorer for laconic | ||
|
||
``` | ||
laconic-so --stack ping-pub setup-repositories | ||
laconic-so --stack ping-pub build-containers | ||
laconic-so --stack ping-pub deploy init --output ping-pub-spec.yml --map-ports-to-host localhost-same | ||
laconic-so --stack ping-pub deploy create --spec-file ping-pub-spec.yml --deployment-dir pp-deployment | ||
laconic-so deployment --dir pp-deployment start | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: "0.1" | ||
name: ping-pub | ||
repos: | ||
# fork, but only for config & Dockerfile reasonsb | ||
- github.com/LaconicNetwork/explorer@laconic | ||
containers: | ||
- cerc/ping-pub | ||
pods: | ||
- ping-pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters