-
Notifications
You must be signed in to change notification settings - Fork 22
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
move to tipg #55
move to tipg #55
Conversation
directory="", | ||
loader=jinja2.ChoiceLoader( | ||
[ | ||
jinja2.PackageLoader(__package__, "templates"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
) | ||
await register_collection_catalog( | ||
app, | ||
schemas=["public"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hard coding tipg db settings (using TIPG_DB_SCHEMAS
won't have any influence) I'm not sure about this
tables=db_settings.tables, | ||
function_schemas=["pg_temp"], | ||
# functions=db_settings.functions, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One thing that is complex here is that we can't pass the custom SQL directory via variable but we will have to use TIPG_CUSTOM_SQL_DIRECTORY
environment
https://github.com/developmentseed/tipg/blob/main/tipg/settings.py#L161-L170
Work on functions for eoapi
🥳 I had a lot difficulties to make the tests past because of the addition of the Basically we are adding the table after we start the Maybe we should open an issue in |
closes #53
This PR does:
eoapi.features
and replaceeoapi.vector
with a TiPG based applicationTo Do