Skip to content

Commit

Permalink
Merge pull request #37 from OpenDRR/enable-additional-layers-pygeoapi
Browse files Browse the repository at this point in the history
Enable additional layers pygeoapi
  • Loading branch information
jvanulde authored Sep 3, 2020
2 parents 31ecb93 + a75c354 commit 1a72d01
Show file tree
Hide file tree
Showing 3 changed files with 490 additions and 18 deletions.
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,30 @@ REST API for OpenDRR data

- Docker engine installed and running

### Edit the configuration

Make a copy of `sample_config.ini` and rename it `config.ini`. Open this file in an editor, add the required github_token (see https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) and set the remaining parameters as follows:

[auth]
# Github Token for Private Repo Accesss
github_token = a00049ba79152d03380c34652f2cb612

[rds]
# PostGIS Connection Details
postgres_host = db-opendrr
postgres_port = 5432
postgres_un = postgres
postgres_pw = password
postgres_db = opendrr
postgres_address = db-opendrr:5432/opendrr

[es]
# Elasticsearch Connection Details
es_un = elastic
es_pw = changeme
es_endpoint = elasticsearch-opendrr:9200
kibana_endpoint = localhost:5601

### Run docker-compose

$ docker-compose up --build
Expand Down Expand Up @@ -209,5 +233,3 @@ To start the stack:
To stop the stack:

$ docker-compose -f docker-compose-run.yml stop


Loading

0 comments on commit 1a72d01

Please sign in to comment.