Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add demo and postgresql driver in docs #334

Merged
merged 2 commits into from
Mar 27, 2024
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ modern Python stack, powered by awesome open-source software such as
and [Rasterio](https://github.com/mapbox/rasterio).

[Read the docs](https://terracotta-python.readthedocs.io/en/latest) |
[Try the demo](https://terracotta-demo-frontend.orangebeach-11aa4896.westeurope.azurecontainerapps.io/) |
[Explore the API](https://terracotta-python.readthedocs.io/en/latest/apidoc.html) |
[Satlas, powered by Terracotta](http://satlas.dk)

Expand Down
5 changes: 5 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,8 @@ MySQL metadata store
++++++++++++++++++++

.. autoclass:: terracotta.drivers.mysql_meta_store.MySQLMetaStore

PostgreSQL metadata store
+++++++++++++++++++++++++

.. autoclass:: terracotta.drivers.postgresql_meta_store.PostgreSQLMetaStore
7 changes: 7 additions & 0 deletions docs/concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ Currently implemented drivers include:
excellent candidate for deployments on cloud services, e.g. through
`AWS Aurora Serverless <https://aws.amazon.com/rds/aurora/serverless/>`__.

**PostgreSQL + GeoTiff**

Similar to the SQLite driver, but uses a
centralized PostgreSQL database to store metadata. This driver is also an
excellent candidate for deployments on cloud services, e.g. through
`AWS Aurora Serverless <https://aws.amazon.com/rds/aurora/serverless/>`__.


Why serverless?
---------------
Expand Down
4 changes: 4 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ Use cases
from S3 buckets. <tutorials/aws>` This allows you to build apps that
scale almost infinitely with minimal maintenance!

Demo
----
Try out a live demo `here <https://terracotta-demo-frontend.orangebeach-11aa4896.westeurope.azurecontainerapps.io/>`_.


Installation
------------
Expand Down
Loading