Francesco Frassinelli

Results 309 comments of Francesco Frassinelli

Here is a possible solution I tried (even if it would be nice to have something like this included in ckanext-scheming) `views.py`: ```python from flask import Blueprint, jsonify import ckan.plugins.toolkit...

That seems interesting: https://www.psycopg.org/docs/extras.html#psycopg2.extras.ReplicationCursor.read_message

Personal note: having ssh is even better because it allows to easily synchronize files with scp (so you can easily test your WIP bugfix), it works great with IDE like...

Relevant: https://github.com/MazeMap/Leaflet.TileLayer.PouchDBCached

We could implement GitHub actions to run a docker build and check for errors in advance.

1. Build test 2. Run the image and check if the service is reachable over HTTP within a minute Those two very simple tests that would catch the biggest regressions,...

It can make a difference if you forget to start geoserver without mounting the goserver-data-dir. It can help the developer understanding that such folder should be persistent. On the other...

Note that `COPY` has a `--chmod` option to make the file executable, while if you copy the file and then change its attributes, the file is going to be stored...

> We could also change the permission of the files outside the container. thoughts? That would not have any effect on the resulting file inside the container actually, but it...