Implement converting prices (#79)
All checks were successful
Django CI/CD / test (push) Successful in 1m17s
Django CI/CD / build-and-push (push) Successful in 2m10s

Reviewed-on: #79
This commit is contained in:
2024-11-11 16:36:57 +00:00
parent f61cde180f
commit 19676f8441
15 changed files with 764 additions and 221 deletions

View File

@ -42,8 +42,18 @@ INSTALLED_APPS = [
"graphene_django",
"django_htmx",
"django_cotton",
"django_q",
]
Q_CLUSTER = {
"name": "DjangoQ",
"workers": 4,
"recycle": 500,
"timeout": 60,
"retry": 120,
"orm": "default",
}
GRAPHENE = {"SCHEMA": "games.schema.schema"}
if DEBUG: