Skip to content

Commit

Permalink
Merge pull request #240 from maxpower-01/main
Browse files Browse the repository at this point in the history
fix: enable communication between webserver and the TENDERMINT_URL
  • Loading branch information
sug0 authored Feb 13, 2025
2 parents 6dee2e5 + 511a566 commit 89b6cd7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Follow these instructions to set up the project locally. The steps below will gu

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.

## 🐳 Installation with Docker
## 🐳 Docker Deployment

### Prerequisites

Expand All @@ -81,8 +81,9 @@ apt-get install -y curl apt-transport-https ca-certificates software-properties-
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.

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

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

## Installation without Docker
## 🖥️ Self-Hosted Deployment

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

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

```sh
apt-get install -y postgresql-client
```
```
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ services:
PACKAGE: transactions

webserver:
<<: *defaults
image: namada/webserver-indexer
build:
context: .
Expand Down

0 comments on commit 89b6cd7

Please sign in to comment.