Skip to content

Commit

Permalink
refactor: get_serializer를 get_serializer_class로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jungmir committed Aug 3, 2024
1 parent 7c00a0c commit fa3ac91
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyconkr/settings-localtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@


# RDS
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "local.sqlite3",
}
}

# django-storages: TODO fix to in memory?
del MEDIA_ROOT
Expand Down

0 comments on commit fa3ac91

Please sign in to comment.