From c8e92cd6dae42db42bdd856b9c973de0c8732bc6 Mon Sep 17 00:00:00 2001 From: Rotheem <114694873+Rotheem@users.noreply.github.com> Date: Sun, 25 Aug 2024 21:08:13 +0200 Subject: [PATCH] Bump calypsso to 1.1.2 and complete .env.template (#542) ### Description Please explain the changes you made here. ### Checklist - [ ] Created tests which fail without the change (if possible) - [ ] All tests passing - [ ] Extended the documentation, if necessary --- .env.template | 10 ++++++++++ requirements-common.txt | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.env.template b/.env.template index 2da881d22..24d306ba4 100644 --- a/.env.template +++ b/.env.template @@ -57,6 +57,8 @@ USE_FIREBASE=false #HELLOASSO_CLIENT_ID = "" #HELLOASSO_CLIENT_SECRET = "" +CDR_PAYMENT_REDIRECTION_URL: str | None = None + # Redis configuration # REDIS_HOST = "hyperion-redis" #May be left at "" during dev if you don't have a redis server running, in production it should be set to the name of the redis container REDIS_PORT = 6379 @@ -72,3 +74,11 @@ POSTGRES_PASSWORD = "" POSTGRES_DB = "" POSTGRES_TZ = "Etc/UTC" DATABASE_DEBUG = False #If True, will print all SQL queries in the console + +# Drive configuration for the raid registering app +RAID_DRIVE_REFRESH_TOKEN: str | None = None +RAID_DRIVE_API_KEY: str | None = None +RAID_DRIVE_CLIENT_ID: str | None = None +RAID_DRIVE_CLIENT_SECRET: str | None = None + +RAID_PAYMENT_REDIRECTION_URL: str | None = None \ No newline at end of file diff --git a/requirements-common.txt b/requirements-common.txt index 9c0dc8d83..3e5c7cb9d 100644 --- a/requirements-common.txt +++ b/requirements-common.txt @@ -3,7 +3,7 @@ alembic==1.13.2 # database migrations asyncpg==0.29.0 # PostgreSQL adapter for asynchronous operations bcrypt==4.1.3 # password hashing broadcaster==0.3.1 # Working with websockets with multiple workers. -calypsso==1.1.1 +calypsso==1.1.2 fastapi==0.111.0 firebase-admin==6.5.0 # Firebase is used for push notification fpdf2==2.7.8