python manage.py test ๋ฅผ ๋๋ฆฌ๋ฉด allauth.socialaccount.models.SocialApp.DoesNotExist ์๋ฌ๊ฐ ๋น๋๋ค.
https://github.com/osc-vitap/oschub/issues/18์๊ธ์ ๋ณด๋ ์
๋ฐ์ดํธ๊ฐ ๋์ด์ client ID๋ secret key๋ฅผ ์ถ๊ฐํด์ผ ํ๋ค๊ณ ํ๋ค์. settings.py ํ์ผ์ ์๋์ ๊ฐ์ด ์ถ๊ฐํ๋ฉด ํด๊ฒฐ๋๋๋ผ๊ตฌ์. ์์ ๋งํฌ์๋ ์๋๋ฐ, ๋ค์ ๋งํฌ(https://github.com/osc-vitap/oschub/commit/2146d3315a4afa7056227419903db56612bbb208)์์ ๋ณด์ค ์ ์์ต๋๋ค. SOCIALACCOUNT_PROVIDERS = { "google": { "APP": { "client_id": os.getenv("GOOGLE_CLIENT_ID"), "secret": os.getenv("GOOGLE_SECRET_KEY"), "key": "" }, # These are provider-specific settings that can only be # listed here: "SCOPE": [ "profile", "email", ], "AUTH_PARAMS": { "access_type": "online", } }}