You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the code for Horizon resides in our Go monorepo.
14
14
```bash
15
-
git clone https://github.com/go.git
15
+
git clone https://github.com/stellar/go.git
16
16
```
17
17
If you want to contribute to the project, consider forking the repository and cloning the fork instead.
18
18
19
19
## Getting Started with Running Horizon
20
20
The [start.sh](/services/horizon/docker/start.sh) script builds horizon from current source, and then runs docker-compose to start the docker containers with runtime configs for horizon, postgres, and optionally core if the optional `standalone` network parameter was included.
21
21
The script takes one optional parameter which configures the Stellar network used by the docker containers. If no parameter is supplied, the containers will run on the Stellar test network. Read more about the public and private networks in the [public documentation](https://developers.stellar.org/docs/fundamentals-and-concepts/testnet-and-pubnet#testnet)
22
22
23
-
`./start.sh pubnet` will run the containers on the Stellar public network.
23
+
`./services/horizon/docker/start.sh pubnet` will run the containers on the Stellar public network.
24
24
25
-
`./start.sh standalone` will run the containers on a private standalone Stellar network.
25
+
`./services/horizon/docker/start.sh standalone` will run the containers on a private standalone Stellar network.
26
26
27
-
`./start.sh testnet` will run the containers on the Stellar test network.
27
+
`./services/horizon/docker/start.sh testnet` will run the containers on the Stellar test network.
28
28
29
29
The following ports will be exposed:
30
30
- Horizon: **8000**
@@ -42,47 +42,21 @@ We will now configure a development environment to run Horizon service locally w
42
42
### Building Stellar Core
43
43
Horizon requires an instance of stellar-core binary on the same host. This is referred to as the `Captive Core`. Since, we are running horizon for dev purposes, we recommend considering two approaches to get the stellar-core binary, if saving time is top priority and your development machine is on a linux debian o/s, then consider installing the debian package, otherwise the next option available is to compile the core source directly to binary on your machine, refer to [INSTALL.md](https://github.com/stellar/stellar-core/blob/master/INSTALL.md) file for the instructions on both approaches.
44
44
45
-
### Building Horizon
46
-
47
-
1. Change to the horizon services directory - `cd go/services/horizon/`.
48
-
2. Compile the Horizon binary: `go build -o stellar-horizon && go install`. You should see the resulting `stellar-horizon` executable in `go/services/horizon`.
49
-
3. Add the executable to your PATH in your `~/.bashrc` or equivalent, for easy access: `export PATH=$PATH:{absolute-path-to-horizon-folder}`
50
-
51
-
Open a new terminal. Confirm everything worked by running `stellar-horizon --help` successfully. You should see an informative message listing the command line options supported by Horizon.
52
-
53
45
### Database Setup
54
46
55
-
Horizon uses a Postgres database backend to record information ingested from an associated Stellar Core. The unit and integration tests will also attempt to reference a Postgres db server at ``localhost:5432`` with trust auth method enabled by default for ``postgres`` user. You can either install the server locally or run any type of docker container that hosts the database server. We recommend using the [docker-compose.yml](/services/horizon/docker/docker-compose.yml) file in the ``docker`` folder:
47
+
Horizon uses a Postgres database to record information ingested from Stellar Core. The unit and integration tests also expect a Postgres DB to be running at ``localhost:5432`` with trust auth method enabled by default for the ``postgres`` user. You can run the following command to spin up a Horizon database as a docker container:
56
48
```bash
57
-
docker-compose -f ./docker/docker-compose.yml up horizon-postgres
49
+
docker-compose -f ./services/horizon/docker/docker-compose.yml up -d horizon-postgres
58
50
```
59
-
This starts a Horizon Postgres docker container and exposes it on the port 5432. Note that while Horizon will run locally, it's PostgresQL db will run in docker.
51
+
The docker container will accept database connections on port 5432. Note that while Horizon will run locally, it's PostgresQL db will run in docker.
60
52
61
53
To shut down all docker containers and free up resources, run the following command:
62
54
```bash
63
-
docker-compose -f ./docker/docker-compose.yml down
64
-
```
65
-
66
-
### Run tests
67
-
At this point you should be able to run Horizon's unit tests:
68
-
```bash
69
-
cd go/services/horizon/
70
-
go test ./...
55
+
docker-compose -f ./services/horizon/docker/docker-compose.yml down --remove-orphans -v
71
56
```
72
57
73
-
To run the integration tests, you need to set some environment variables:
go test -race -timeout 25m -v ./services/horizon/internal/integration/...
80
-
```
81
-
Note that this will also require a Postgres instance running on port 5432 either locally or exposed through a docker container. Also note that the ``POSTGRES_HOST_AUTH_METHOD`` has been enabled.
82
-
83
-
### Setup Debug Configuration in IDE
84
-
85
-
#### Code Debug
86
60
Add a debug configuration in your IDE to attach a debugger to the local Horizon process and set breakpoints in your code. Here is an example configuration for VS Code:
87
61
88
62
```json
@@ -94,18 +68,45 @@ Add a debug configuration in your IDE to attach a debugger to the local Horizon
"NETWORK_PASSPHRASE": "Test SDF Network ; September 2015",
71
+
"APPLY_MIGRATIONS": "true",
72
+
"NETWORK": "testnet",
100
73
"PER_HOUR_RATE_LIMIT": "0"
101
74
},
102
75
"args": []
103
76
}
104
77
```
105
78
If all is well, you should see ingest logs written to standard out. You can read more about configuring the different environment variables in [Configuring](https://developers.stellar.org/docs/run-api-server/configuring) section of our public documentation.
106
79
107
-
#### Test Debug
108
-
You can also use a similar configuration to debug the integration and unit tests. For e.g. here is a configuration for debugging the ```TestFilteringAccountWhiteList``` integration test.
80
+
### Building Horizon Binary
81
+
82
+
1. Change to the horizon services directory - `cd go/services/horizon/`.
83
+
2. Compile the Horizon binary: `go build -o stellar-horizon && go install`. You should see the resulting `stellar-horizon` executable in `go/services/horizon`.
84
+
3. Add the executable to your PATH in your `~/.bashrc` or equivalent, for easy access: `export PATH=$PATH:{absolute-path-to-horizon-folder}`
85
+
86
+
Open a new terminal. Confirm everything worked by running `stellar-horizon --help` successfully. You should see an informative message listing the command line options supported by Horizon.
87
+
88
+
### Run tests
89
+
90
+
Once you have [installed stellar-core](#building-stellar-core) on your machine and have the
91
+
[Horizon database](#database-setup) up and running, you should be able to run Horizon's unit tests:
92
+
93
+
```bash
94
+
cd go/services/horizon/
95
+
go test ./...
96
+
```
97
+
98
+
To run the integration tests, you need to set some environment variables:
go test -race -timeout 25m -v ./services/horizon/internal/integration/...
105
+
```
106
+
107
+
#### Running tests in IDE
108
+
109
+
You can debug integration and unit tests in your IDE. For example, here is a VS Code configuration for debugging the ```TestFilteringAccountWhiteList``` integration test.
109
110
```json
110
111
{
111
112
"name": "Debug Test Function",
@@ -115,8 +116,8 @@ You can also use a similar configuration to debug the integration and unit tests
@@ -166,18 +167,18 @@ this customization is only applicable when running a standalone network, as it r
166
167
167
168
## Using a specific version of Stellar Core
168
169
169
-
By default, the Docker Compose file is configured to use version 19 of Protocol and Stellar Core. You can specify optional environment variables from the command shell for stating version overrides for either the docker-compose or start.sh invocations.
170
+
By default, the Docker Compose file is configured to use version 21 of Protocol and Stellar Core. You can specify optional environment variables from the command shell for stating version overrides for either the docker-compose or start.sh invocations.
0 commit comments