Skip to content

Commit 933e939

Browse files
first pr (#1)
first-pr
1 parent 220bae5 commit 933e939

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+4705
-0
lines changed

.github/workflows/cicd.yaml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: arturo-stac-api
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 10
12+
13+
services:
14+
db_service:
15+
image: kartoza/postgis:latest
16+
env:
17+
POSTGRES_USER: username
18+
POSTGRES_PASS: password
19+
POSTGRES_DBNAME: postgis
20+
POSTGRES_HOST: localhost
21+
POSTGRES_PORT: 5432
22+
ALLOW_IP_RANGE: 0.0.0.0/0
23+
# Set health checks to wait until postgres has started
24+
options: >-
25+
--health-cmd pg_isready
26+
--health-interval 10s
27+
--health-timeout 5s
28+
--health-retries 5
29+
ports:
30+
# Maps tcp port 5432 on service container to the host
31+
- 5432:5432
32+
33+
steps:
34+
- name: Check out repository code
35+
uses: actions/checkout@v2
36+
37+
# Setup Python (faster than using Python container)
38+
- name: Setup Python
39+
uses: actions/setup-python@v2
40+
with:
41+
python-version: "3.8"
42+
43+
- name: Install pipenv
44+
run: |
45+
python -m pip install --upgrade pipenv wheel
46+
47+
- id: cache-pipenv
48+
uses: actions/cache@v1
49+
with:
50+
path: ~/.local/share/virtualenvs
51+
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
52+
53+
- name: Install dependencies
54+
if: steps.cache-pipenv.outputs.cache-hit != 'true'
55+
run: |
56+
pipenv install --deploy --dev
57+
58+
- name: Run migration
59+
run: |
60+
pipenv run alembic upgrade head
61+
env:
62+
POSTGRES_USER: username
63+
POSTGRES_PASS: password
64+
POSTGRES_DBNAME: postgis
65+
POSTGRES_HOST: localhost
66+
POSTGRES_PORT: 5432
67+
68+
- name: Run test suite
69+
run: |
70+
pipenv run pytest -svvv
71+
env:
72+
ENVIRONMENT: testing
73+
POSTGRES_USER: username
74+
POSTGRES_PASS: password
75+
POSTGRES_DBNAME: postgis
76+
POSTGRES_HOST_READER: localhost
77+
POSTGRES_HOST_WRITER: localhost
78+
POSTGRES_PORT: 5432

.gitignore

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
PIP_EXTRA_INDEX_URL
2+
*.txt
3+
!tests/resources/*.jpg
4+
**.pyc
5+
**.log
6+
*.mat
7+
target/*
8+
src/local/*
9+
src/local-test/*
10+
*.iml
11+
.idea/
12+
model/
13+
.DS_Store
14+
#config.yaml
15+
**.save
16+
*.jpg
17+
**.save.*
18+
**.bak
19+
.DS_Store
20+
.mvn/
21+
22+
# Byte-compiled / optimized / DLL files
23+
__pycache__/
24+
*.py[cod]
25+
*$py.class
26+
27+
# C extensions
28+
*.so
29+
30+
# user specific overrides
31+
tests/tests.ini
32+
tests/logging.ini
33+
34+
# Distribution / packaging
35+
.Python
36+
env/
37+
build/
38+
develop-eggs/
39+
dist/
40+
downloads/
41+
eggs/
42+
.eggs/
43+
lib/
44+
lib64/
45+
parts/
46+
sdist/
47+
var/
48+
wheels/
49+
*.egg-info/
50+
.installed.cfg
51+
*.egg
52+
53+
# PyInstaller
54+
# Usually these files are written by a python script from a template
55+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
56+
*.manifest
57+
*.spec
58+
59+
# Installer logs
60+
pip-log.txt
61+
pip-delete-this-directory.txt
62+
63+
# Unit test / coverage reports
64+
htmlcov/
65+
.tox/
66+
.coverage
67+
.coverage.*
68+
.cache
69+
nosetests.xml
70+
coverage.xml
71+
*,cover
72+
.hypothesis/
73+
74+
# Translations
75+
*.mo
76+
*.pot
77+
78+
# Django stuff:
79+
*.log
80+
local_settings.py
81+
82+
# Flask stuff:
83+
instance/
84+
.webassets-cache
85+
86+
# Scrapy stuff:
87+
.scrapy
88+
89+
# Sphinx documentation
90+
docs/_build/
91+
92+
# PyBuilder
93+
target/
94+
95+
# Jupyter Notebook
96+
.ipynb_checkpoints
97+
98+
# pyenv
99+
.python-version
100+
101+
# celery beat schedule file
102+
celerybeat-schedule
103+
104+
# SageMath parsed files
105+
*.sage.py
106+
107+
# dotenv
108+
.env
109+
110+
# Spyder project settings
111+
.spyderproject
112+
.spyproject
113+
114+
# Rope project settings
115+
.ropeproject
116+
117+
# mkdocs documentation
118+
/site
119+
120+
# skaffold temporary build/deploy files
121+
build.out

.pre-commit-config.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
repos:
2+
- repo: https://github.com/python/black
3+
rev: stable
4+
hooks:
5+
- id: black
6+
language_version: python3.8

Dockerfile

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
FROM python:3.8-slim
2+
3+
# Any python libraries that require system libraries to be installed will likely
4+
# need the following packages in order to build
5+
RUN apt-get update && apt-get install -y \
6+
build-essential \
7+
libffi-dev \
8+
libssl-dev \
9+
git
10+
11+
RUN pip install pipenv
12+
ENV PIPENV_NOSPIN=true
13+
ENV PIPENV_HIDE_EMOJIS=true
14+
15+
ARG install_dev_dependencies=true
16+
17+
WORKDIR /app
18+
19+
COPY Pipfile Pipfile.lock ./
20+
RUN pipenv install --deploy --ignore-pipfile ${install_dev_dependencies:+--dev}
21+
22+
COPY . ./
23+
24+
ENV APP_HOST=0.0.0.0
25+
ENV APP_PORT=80
26+
27+
ENV RELOAD=''
28+
29+
30+
ENTRYPOINT ["pipenv", "run"]
31+
CMD uvicorn stac_api.app:app --host=${APP_HOST} --port=${APP_PORT} ${RELOAD:+--reload}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Arturo AI
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!make
2+
APP_HOST ?= 0.0.0.0
3+
APP_PORT ?= 8080
4+
EXTERNAL_APP_PORT ?= ${APP_PORT}
5+
run_docker = docker run -it --rm \
6+
-p ${EXTERNAL_APP_PORT}:${APP_PORT} \
7+
-v $(shell pwd):/app \
8+
--env APP_HOST=${APP_HOST} \
9+
--env APP_PORT=${APP_PORT} \
10+
--env POSTGRES_USER=username \
11+
--env POSTGRES_PASS=password \
12+
--env POSTGRES_DBNAME=postgis \
13+
--env POSTGRES_HOST_READER=host.docker.internal \
14+
--env POSTGRES_HOST_WRITER=host.docker.internal \
15+
--env POSTGRES_PORT=5432 \
16+
--env ENVIRONMENT=development \
17+
arturo-stac-api_app
18+
19+
.PHONY: docker-shell
20+
docker-shell:
21+
$(run_docker) /bin/bash
22+
23+
.PHONY: test
24+
test:
25+
$(run_docker) pytest

Pipfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = "true"
5+
6+
[packages]
7+
uvicorn = "*"
8+
fastapi = {extras = ["all"],version = "*"}
9+
alembic = "*"
10+
psycopg2-binary = "*"
11+
shapely = "*"
12+
sqlalchemy = "*"
13+
geoalchemy2 = "<0.8.0"
14+
sqlakeyset = "*"
15+
stac-pydantic = "*"
16+
17+
[dev-packages]
18+
pytest = "*"
19+
pytest-cov = "*"
20+
pytest-asyncio = "*"
21+
requests = "*"
22+
23+
[requires]
24+
python_version = "3.8"

0 commit comments

Comments
 (0)