mirror of
https://github.com/YunoHost-Apps/snserver_ynh.git
synced 2024-09-03 20:26:22 +02:00
commit
771392e542
10 changed files with 30 additions and 19 deletions
|
@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
|
||||
The Standard Notes syncing server. An end-to-end encrypted note-taking app.
|
||||
|
||||
**Shipped version:** 2021.12.17~ynh1
|
||||
**Shipped version:** 2022.01.10~ynh1
|
||||
|
||||
**Demo:** https://standardnotes.org/demo
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
|||
|
||||
|
||||
|
||||
**Version incluse :** 2021.12.17~ynh1
|
||||
**Version incluse :** 2022.01.10~ynh1
|
||||
|
||||
**Démo :** https://standardnotes.org/demo
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/standardnotes/api-gateway/archive/1.28.2.tar.gz
|
||||
SOURCE_SUM=86a0eb78a6f0e4622068fd4cb2cbbbcbe13403055bc8d6b1406cd34cccb8435f
|
||||
SOURCE_URL=https://github.com/standardnotes/api-gateway/archive/1.29.0.tar.gz
|
||||
SOURCE_SUM=d9d420e2f7eef7bef5960d5e37eaa7ad994b2df49128e9b818d90ddfabdddc7b
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/standardnotes/auth/archive/1.32.3.tar.gz
|
||||
SOURCE_SUM=aef19dc831813884bee597debad6224cf6a391f191e8782403f90812120b8162
|
||||
SOURCE_URL=https://github.com/standardnotes/auth/archive/1.32.15.tar.gz
|
||||
SOURCE_SUM=6518ab6cb1790c4191cd5eb6d96df29513ab4a19c3bbab331f301f9de051ea9c
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/standardnotes/syncing-server-js/archive/1.44.0.tar.gz
|
||||
SOURCE_SUM=ba08400fa72a26fcffbcc63a72959b4201f004418d8072c792553c878dab3b24
|
||||
SOURCE_URL=https://github.com/standardnotes/syncing-server-js/archive/1.44.4.tar.gz
|
||||
SOURCE_SUM=6a82033075bf82d40725c24b7ba9a02ee1b46a344c121bf7643695a7d783db55
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -10,7 +10,7 @@ SYNCING_SERVER_JS_URL="http://localhost:__PORT_SYNCING_SERVER_JS__"
|
|||
AUTH_SERVER_URL="http://localhost:__PORT_AUTH__"
|
||||
#PAYMENTS_SERVER_URL=http://payments:3000
|
||||
|
||||
HTTP_CALL_TIMEOUT=10000
|
||||
HTTP_CALL_TIMEOUT=60000
|
||||
|
||||
AUTH_JWT_SECRET=__AUTH_JWT_SECRET__
|
||||
|
||||
|
@ -22,3 +22,11 @@ NEW_RELIC_NO_CONFIG_FILE=true
|
|||
NEW_RELIC_DISTRIBUTED_TRACING_ENABLED=false
|
||||
NEW_RELIC_LOG_ENABLED=false
|
||||
NEW_RELIC_LOG_LEVEL=info
|
||||
|
||||
|
||||
REDIS_URL=redis://localhost:6379/__REDIS_DB__
|
||||
REDIS_EVENTS_CHANNEL=events
|
||||
|
||||
# (Optional) SNS Setup
|
||||
SNS_TOPIC_ARN=
|
||||
SNS_AWS_REGION=
|
||||
|
|
|
@ -56,10 +56,11 @@ NEW_RELIC_DISTRIBUTED_TRACING_ENABLED=false
|
|||
NEW_RELIC_LOG_ENABLED=false
|
||||
NEW_RELIC_LOG_LEVEL=info
|
||||
|
||||
# (Optional) Extensions Server
|
||||
EXTENSION_SERVER_URL=
|
||||
|
||||
# (Optional) User Server
|
||||
USER_SERVER_REGISTRATION_URL=
|
||||
USER_SERVER_CHANGE_EMAIL_URL=
|
||||
USER_SERVER_AUTH_KEY=
|
||||
|
||||
# (Optional) Sentry Setup
|
||||
SENTRY_DSN=
|
||||
SENTRY_ENVIRONMENT=
|
||||
|
|
|
@ -56,10 +56,12 @@ NEW_RELIC_DISTRIBUTED_TRACING_ENABLED=false
|
|||
NEW_RELIC_LOG_ENABLED=false
|
||||
NEW_RELIC_LOG_LEVEL=info
|
||||
|
||||
# (Optional) Extensions Server
|
||||
EXTENSION_SERVER_URL=
|
||||
|
||||
# (Optional) User Server
|
||||
USER_SERVER_REGISTRATION_URL=
|
||||
USER_SERVER_CHANGE_EMAIL_URL=
|
||||
USER_SERVER_AUTH_KEY=
|
||||
|
||||
|
||||
# (Optional) Sentry Setup
|
||||
SENTRY_DSN=
|
||||
SENTRY_ENVIRONMENT=
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"description": {
|
||||
"en": "The Standard Notes syncing server. An end-to-end encrypted note-taking app."
|
||||
},
|
||||
"version": "2021.12.17~ynh1",
|
||||
"version": "2022.01.10~ynh1",
|
||||
"url": "https://github.com/standardnotes/standalone",
|
||||
"upstream": {
|
||||
"license": "AGPL-3.0-or-later",
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
RUBY_VERSION="2.7.3"
|
||||
NODEJS_VERSION="16"
|
||||
|
||||
syncing_server_js_version="1.44.0"
|
||||
auth_version="1.32.3"
|
||||
api_gateway_version="1.28.2"
|
||||
syncing_server_js_version="1.44.4"
|
||||
auth_version="1.32.15"
|
||||
api_gateway_version="1.29.0"
|
||||
extensions_version="2021.08.27"
|
||||
|
||||
swap_needed=2048
|
||||
|
|
Loading…
Reference in a new issue