9 Commits

Author SHA1 Message Date
KatKatKateryna 5ec81ea745 fixes
flake8 / flake8_py3 (push) Has been cancelled
Build / main (3.10) (push) Has been cancelled
Build / admin (3.10) (push) Has been cancelled
Check vulnerabilities / vulnerabilities (push) Has been cancelled
2024-09-06 18:12:09 +01:00
Gergő Jedlicska 79b0116d9a Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 03:20:56 +00:00
Gergő Jedlicska cdc8717bde Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 02:46:07 +00:00
Gergő Jedlicska 7141e081cc Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 02:37:36 +00:00
Gergő Jedlicska 5ee0e75025 Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 02:11:57 +00:00
Gergő Jedlicska 7bdbbb7cdf Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 02:06:18 +00:00
Gergő Jedlicska 3bde1c3b93 Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 01:54:04 +00:00
Gergő Jedlicska 0eb30470c6 Merge branch 'dev' of https://github.com/specklesystems/pygeoapi into dev 2024-09-04 01:37:31 +00:00
Gergő Jedlicska 652c52937c add start script and reverse proxy config 2024-09-03 08:54:06 +00:00
5 changed files with 16 additions and 1 deletions
+3
View File
@@ -1,3 +1,6 @@
access_log
error_log
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
+3
View File
@@ -0,0 +1,3 @@
geo.speckle.systems {
reverse_proxy localhost:8000
}
+1 -1
View File
@@ -128,4 +128,4 @@ resources:
hello-world:
type: process
processor:
name: HelloWorld
name: HelloWorld
+1
View File
@@ -17,3 +17,4 @@ shapely
SQLAlchemy<2.0.0
tinydb
unicodecsv
specklepy==2.19.6
Executable
+8
View File
@@ -0,0 +1,8 @@
source .venv/bin/activate
export PYGEOAPI_CONFIG="example-config.yml"
export PYGEOAPI_OPENAPI="example-openapi.yml"
export MAPTILER_KEY_SPECKLE="qam9vwl7bVk5tW1oZu46"
export PORT=8000
gunicorn pygeoapi.flask_app:APP --timeout 100000 --access-logfile access_log --error-logfile error_log --capture-output