Skip to content

Commit 89b6cd7

Browse files
authored
Merge pull request #240 from maxpower-01/main
fix: enable communication between webserver and the TENDERMINT_URL
2 parents 6dee2e5 + 511a566 commit 89b6cd7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Follow these instructions to set up the project locally. The steps below will gu
6161

6262
It is strongly recommended to change the default username and password for your PostgreSQL database for security purposes. Update these credentials in both the `.env` file and the `docker-compose.yml` file to reflect the changes.
6363

64-
## 🐳 Installation with Docker
64+
## 🐳 Docker Deployment
6565

6666
### Prerequisites
6767

@@ -81,8 +81,9 @@ apt-get install -y curl apt-transport-https ca-certificates software-properties-
8181
Ensure you have the latest repository cloned to maintain compatibility with other Namada interfaces. Use the following commands to clone the repository and navigate into its directory.
8282

8383
```sh
84-
git clone https://github.com/anoma/namada-indexer.git
85-
cd namada-indexer
84+
# Clone this repository, copy the URL from the Code button above.
85+
git clone <copied-url>
86+
cd <repository-name>
8687
```
8788

8889
Create the `.env` file in the root of the project. You can use the `.env.sample` file as a reference.
@@ -107,7 +108,7 @@ just docker-up
107108
just docker-up-d
108109
```
109110

110-
## Installation without Docker
111+
## 🖥️ Self-Hosted Deployment
111112

112113
If you prefer not to use Docker, you can follow the instructions below to set up and run the services manually.
113114

@@ -136,4 +137,4 @@ After populating the database, you can run the webserver to access the data via
136137

137138
```sh
138139
apt-get install -y postgresql-client
139-
```
140+
```

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ services:
8484
PACKAGE: transactions
8585

8686
webserver:
87+
<<: *defaults
8788
image: namada/webserver-indexer
8889
build:
8990
context: .

0 commit comments

Comments
 (0)