File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/types Expand file tree Collapse file tree 5 files changed +6
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ APP_HOST ?= 0.0.0.0
3
3
APP_PORT ?= 8080
4
4
EXTERNAL_APP_PORT ?= ${APP_PORT}
5
5
6
- run_es = docker-compose -f docker-compose.elasticsearch. yml \
6
+ run_es = docker-compose -f docker-compose.yml \
7
7
run \
8
8
-p ${EXTERNAL_APP_PORT}:${APP_PORT} \
9
9
-e PY_IGNORE_IMPORTMISMATCH=1 \
@@ -13,7 +13,7 @@ run_es = docker-compose -f docker-compose.elasticsearch.yml \
13
13
14
14
.PHONY : es-image
15
15
es-image :
16
- docker-compose -f docker-compose.elasticsearch. yml build
16
+ docker-compose -f docker-compose.yml build
17
17
18
18
.PHONY : docker-run-es
19
19
docker-run-es : es-image
@@ -29,7 +29,7 @@ test-es:
29
29
30
30
.PHONY : run-es-database
31
31
run-es-database :
32
- docker-compose -f docker-compose.elasticsearch. yml run --rm elasticsearch
32
+ docker-compose -f docker-compose.yml run --rm elasticsearch
33
33
34
34
.PHONY : test
35
35
test : test-elasticsearch
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Elasticsearch backend for stac-fastapi.
7
7
------
8
8
#### Running API on localhost:8083
9
9
10
- ``` docker-compose -f docker-compose.elasticsearch. yml up ```
10
+ ``` docker-compose -f docker-compose.yml up ```
11
11
12
12
------
13
13
#### Testing
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
7
7
restart : always
8
8
build :
9
9
context : .
10
- dockerfile : Dockerfile.elasticsearch
10
+ dockerfile : Dockerfile
11
11
platform : linux/amd64
12
12
environment :
13
13
- APP_HOST=0.0.0.0
Original file line number Diff line number Diff line change 1
1
"""common error checks."""
2
2
3
- ## todo: create this client for Elasticsearch
3
+ # todo: create this client for Elasticsearch
4
4
5
5
# import attr
6
6
# from pymongo import MongoClient
You can’t perform that action at this time.
0 commit comments