Make database, oauth, smtp server, mail verificaiton configurable in .env

This commit is contained in:
krek0 2026-05-02 14:18:02 +02:00
parent 3a73bb8887
commit 7fbc81b9e1
8 changed files with 109 additions and 31 deletions

9
allauth_oauth/urls.py Normal file
View file

@ -0,0 +1,9 @@
# This file is part of photo21
# Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
from .provider import OAuthProvider
urlpatterns = default_urlpatterns(OAuthProvider)