-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
407 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ DJANGO_ALLOWED_HOSTS="localhost 127.0.0.1 0.0.0.0 app nginx" | |
|
||
SECRET_KEY=change_me | ||
|
||
LETSENCRYPT_EMAIL=[email protected] | ||
LETSENCRYPT_EMAIL="[email protected]" | ||
LETSENCRYPT_RSA_KEY_SIZE=4096 | ||
# Set to 1 if you're testing your setup to avoid hitting request limits | ||
LETSENCRYPT_STAGING=1 | ||
|
@@ -56,8 +56,9 @@ HOST_POSTGRES_PORT=5433 | |
GEODB_HOST=geodb | ||
GEODB_PORT=5432 | ||
GEODB_USER=postgres | ||
GEODB_PASSWORD=KUAa7h!G&wQEmkS3 | ||
GEODB_PASSWORD="KUAa7h!G&wQEmkS3" | ||
GEODB_DB=postgres | ||
HOST_GEODB_PORT=5434 | ||
|
||
# Sentry DSN. Missing value disables Sentry logging. Can be found on https://opengisch.sentry.io/settings/projects/qfieldcloud/keys/ . | ||
# DEFAULT: <NO VALUE> | ||
|
@@ -85,7 +86,7 @@ EMAIL_USE_SSL=False | |
EMAIL_PORT=25 | ||
EMAIL_HOST_USER=user | ||
EMAIL_HOST_PASSWORD=password | ||
DEFAULT_FROM_EMAIL=webmaster@localhost | ||
DEFAULT_FROM_EMAIL="webmaster@localhost" | ||
|
||
QFIELDCLOUD_DEFAULT_NETWORK=qfieldcloud_default | ||
|
||
|
@@ -111,6 +112,16 @@ QFIELDCLOUD_AUTH_TOKEN_EXPIRATION_HOURS=720 | |
# DEFAULT: "Europe/Zurich" | ||
QFIELDCLOUD_DEFAULT_TIME_ZONE="Europe/Zurich" | ||
|
||
# QFieldCloud QGIS image name to be used as worker by the `worker_wrapper`. | ||
# If empty value, a default name will be generated at build time, for example `qfieldcloud-qgis`. | ||
# DEFAULT: "" | ||
# QFIELDCLOUD_QGIS_IMAGE_NAME="" | ||
|
||
# QFieldCloud `libqfieldsync` volume path to be mounted by the `worker_wrapper` into `worker` containers. | ||
# If empty value or invalid value, the pip installed version defined in `requirements_libqfieldsync.txt` will be used. | ||
# DEFAULT: "" | ||
QFIELDCLOUD_LIBQFIELDSYNC_VOLUME_PATH="" | ||
|
||
# The Django development port. Not used in production. | ||
# DEFAULT: 8011 | ||
DJANGO_DEV_PORT=8011 | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ conf/nginx/certs/* | |
conf/certbot/* | ||
Pipfile* | ||
**/site-packages | ||
docker-qgis/libqfieldsync |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
docker-app/qfieldcloud/core/migrations/0043_update_site_name.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
docker-app/qfieldcloud/core/migrations/0073_project_packaging_offliner.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Generated by Django 3.2.23 on 2024-01-09 22:29 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0072_person_remaining_trial_organizations"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="project", | ||
name="packaging_offliner", | ||
field=models.CharField( | ||
choices=[ | ||
("qgiscore", "QGIS Core Offline Editing (deprecated)"), | ||
("pythonmini", "Optimized Packager"), | ||
], | ||
default="qgiscore", | ||
help_text='The Packaging Offliner packages data for offline use with QField. The new "Optimized Packager" should be preferred over the deprecated "QGIS Core Offline Editing" for new projects.', | ||
max_length=100, | ||
verbose_name="Packaging Offliner", | ||
), | ||
), | ||
] |
Oops, something went wrong.