From a47fb0244949ae31fc945d884139a1e460e768ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20J=C3=A9go?= Date: Tue, 13 Apr 2021 15:30:35 +0200 Subject: [PATCH 1/2] add gitignore for target folder and build js --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 2d6d385a..f33097ca 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ .DS_Store docs/_build/ docs/rsync.bash +cadastrapp/target/* +addons/cadastrapp/js/build/cadastrapp.js From 9ad1eda6554b1788a4bef06094b91f2360e19885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20J=C3=A9go?= Date: Tue, 13 Apr 2021 15:34:24 +0200 Subject: [PATCH 2/2] Add different default template to fix locale potential errors --- script/qgis/database/init.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/qgis/database/init.sql b/script/qgis/database/init.sql index 75555a88..46a764b5 100644 --- a/script/qgis/database/init.sql +++ b/script/qgis/database/init.sql @@ -15,7 +15,8 @@ CREATE DATABASE #dbname_qgis TABLESPACE = pg_default LC_COLLATE = 'fr_FR.UTF-8' LC_CTYPE = 'fr_FR.UTF-8' - CONNECTION LIMIT = -1; + CONNECTION LIMIT = -1 + TEMPLATE = template0; \connect #dbname_qgis;