Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading