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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ jobs:
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
env:
STACK_NAME: eoapi-dev

steps:

steps:
- uses: actions/checkout@v4

- name: Create config file
Expand Down
3 changes: 1 addition & 2 deletions infrastructure/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
aws_s3,
)
from aws_cdk.aws_apigateway import DomainNameOptions
from aws_cdk.aws_apigatewayv2_alpha import DomainName
from aws_cdk.aws_apigatewayv2 import DomainName
from config import AppConfig
from constructs import Construct
from eoapi_cdk import (
Expand Down Expand Up @@ -193,7 +193,6 @@ def __init__(
"NAME": app_config.build_service_name("stac"),
"description": f"{app_config.stage} STAC API",
"TITILER_ENDPOINT": raster.url.strip("/"),
"EXTENSIONS": '["filter", "query", "sort", "fields", "pagination", "titiler", "collection_search", "free_text"]',
},
db=pgstac_db.connection_target,
db_secret=pgstac_db.pgstac_secret,
Expand Down
1 change: 0 additions & 1 deletion infrastructure/dockerfiles/Dockerfile.raster
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ COPY runtimes/eoapi/raster /tmp/raster
RUN python -m pip install "mangum>=0.14,<0.15" /tmp/raster["psycopg-binary"] -t /asset --no-binary pydantic
RUN rm -rf /tmp/raster


# Reduce package size and remove useless files
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[0-9]*//'); cp $f $n; done;
RUN cd /asset && find . -type d -a -name '__pycache__' -print0 | xargs -0 rm -rf
Expand Down
2 changes: 2 additions & 0 deletions infrastructure/dockerfiles/Dockerfile.stac
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ ARG PYTHON_VERSION=3.12

FROM public.ecr.aws/lambda/python:${PYTHON_VERSION}

RUN dnf install -y findutils && dnf clean all

WORKDIR /tmp
RUN python -m pip install pip -U

Expand Down
2 changes: 2 additions & 0 deletions infrastructure/dockerfiles/Dockerfile.vector
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ ARG PYTHON_VERSION=3.12

FROM public.ecr.aws/lambda/python:${PYTHON_VERSION}

RUN dnf install -y findutils && dnf clean all

WORKDIR /tmp
RUN python -m pip install pip -U

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "eoapi-devseed",
"version": "0.1.0",
"dependencies": {
"aws-cdk": "2.130.0"
"aws-cdk": "2.1016.1"
}
}
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ dependencies = []
[dependency-groups]
deploy = [
"boto3==1.24.15",
"eoapi-cdk==7.5.0",
"eoapi-cdk==10.2.5",
"pydantic-settings[yaml]==2.2.1",
"pydantic==2.7",
"typing-extensions>=4.12.2",
"aws-cdk-lib==2.130.0",
]
dev = [
"httpx>=0.28.1",
Expand Down
230 changes: 173 additions & 57 deletions uv.lock

Large diffs are not rendered by default.