Skip to content
Open
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
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,20 @@ Template repository to deploy [eoapi](https://eoapi.dev) on AWS using the [eoapi

## Installation

Install python dependencies with
Install python dependencies with either `pip` or `uv`.

```
# use pip
python -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt
```

# use uv
uv sync
source .venv/bin/activate
```

And node dependencies with

```
Expand Down
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[project]
name = "eoapi-template"
version = "0.1.0"
description = "Template repository to deploy eoapi on AWS using the eoapi-cdk constructs or locally with Docker."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"boto3==1.24.15",
"eoapi-cdk==7.4.1",
"pydantic-settings[yaml]==2.2.1",
"typing-extensions>=4.14.0",
]
Loading