Skip to content

Commit

Permalink
Bump calypsso to 1.1.2 and complete .env.template (#542)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
Rotheem authored Aug 25, 2024
1 parent 91302a3 commit c8e92cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion requirements-common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c8e92cd

Please sign in to comment.