Skip to content

Commit fa3ac91

Browse files
committed
refactor: get_serializer를 get_serializer_class로 변경
1 parent 7c00a0c commit fa3ac91

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pyconkr/settings-localtest.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010

1111

1212
# RDS
13-
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}
13+
DATABASES = {
14+
"default": {
15+
"ENGINE": "django.db.backends.sqlite3",
16+
"NAME": BASE_DIR / "local.sqlite3",
17+
}
18+
}
1419

1520
# django-storages: TODO fix to in memory?
1621
del MEDIA_ROOT

0 commit comments

Comments
 (0)