3 Commits

Author SHA1 Message Date
6ad8686491 chore(release): 1.0.1 2022-12-12 20:15:06 +01:00
31008f5ac6 chore: Add funding. 2022-12-12 20:14:53 +01:00
47e617c4eb Set local pg port if pg container is up. 2022-10-07 16:59:16 +02:00
3 changed files with 11 additions and 0 deletions

2
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1,2 @@
github: equinoxel
patreon: laurivan

5
CHANGELOG.md Normal file
View File

@@ -0,0 +1,5 @@
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### 1.0.1 (2022-12-12)

View File

@@ -1,6 +1,10 @@
PAPERLESS_DBHOST={{ paperless_db_host }}
PAPERLESS_DBSCHEMA={{ paperless_db_host }}
{% if paperless_db_host == 'postgres' %}
PAPERLESS_DBPORT=5432
{% else %}
PAPERLESS_DBPORT={{ paperless_db_port }}
{% endif %}
PAPERLESS_DBUSER={{ paperless_db_user }}
PAPERLESS_DBPASS={{ paperless_db_password }}