Add Docker support with Dockerfile and entrypoint
All checks were successful
Docker / build (push) Successful in 28s
All checks were successful
Docker / build (push) Successful in 28s
This commit is contained in:
parent
faf880a236
commit
4bc1afa0cb
8 changed files with 118 additions and 2 deletions
12
allauth_oauth/apps.py
Normal file
12
allauth_oauth/apps.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# 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 django.apps import AppConfig
|
||||
|
||||
|
||||
class AllauthOAuthConfig(AppConfig):
|
||||
name = "allauth_oauth"
|
||||
|
||||
def ready(self):
|
||||
import allauth_oauth.signals # noqa: F401
|
||||
Loading…
Add table
Add a link
Reference in a new issue