Skip to content

Commit f49eabd

Browse files
committed
playground update
1 parent 82566af commit f49eabd

File tree

8 files changed

+163
-146
lines changed

8 files changed

+163
-146
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax = docker/dockerfile:experimental
2-
FROM python:3.10-alpine
2+
FROM python:3.10-slim
33

44
# Language, Timezone
55
ENV LANG C.UTF-8

Dockerfile.deploy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax = docker/dockerfile:experimental
2-
FROM python:3.10-alpine
2+
FROM python:3.10-slim
33

44
# Language, Timezone
55
ENV LANG C.UTF-8

playground/config/settings.py

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
"quill.localhost",
1919
"quill.lhy.kr",
2020
]
21+
CSRF_TRUSTED_ORIGINS = [
22+
"http://localhost",
23+
"http://quill.localhost",
24+
"https://quill.lhy.kr",
25+
]
2126

2227
# Static
2328
STATIC_DIR = BASE_DIR / "static"

playground/posts/migrations/0001_initial.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Migration(migrations.Migration):
8-
98
initial = True
109

1110
dependencies = []

poetry.lock

+24-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ packages = [
99

1010
[tool.poetry.dependencies]
1111
python = "^3.10"
12-
Django = "^3.2.9"
12+
Django = "^4.1.3"
1313
django-extensions = "^3.1.5"
1414
djangorestframework = "^3.13.1"
1515
gunicorn = "^20.1.0"

requirements.txt

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
asgiref==3.5.2; python_version >= "3.7"
2-
django-extensions==3.1.5; python_version >= "3.6"
3-
django==3.2.13; python_version >= "3.6"
4-
djangorestframework==3.13.1; python_version >= "3.6"
5-
gunicorn==20.1.0; python_version >= "3.5"
6-
model-bakery==1.5.0
7-
pytz==2022.1; python_version >= "3.6"
8-
sqlparse==0.4.2; python_version >= "3.6"
1+
asgiref==3.5.2 ; python_version >= "3.10" and python_version < "4.0"
2+
django-extensions==3.1.5 ; python_version >= "3.10" and python_version < "4.0"
3+
django==4.1.3 ; python_version >= "3.10" and python_version < "4.0"
4+
djangorestframework==3.13.1 ; python_version >= "3.10" and python_version < "4.0"
5+
gunicorn==20.1.0 ; python_version >= "3.10" and python_version < "4.0"
6+
model-bakery==1.5.0 ; python_version >= "3.10" and python_version < "4.0"
7+
pytz==2022.1 ; python_version >= "3.10" and python_version < "4.0"
8+
sqlparse==0.4.2 ; python_version >= "3.10" and python_version < "4.0"
9+
tzdata==2022.6 ; python_version >= "3.10" and python_version < "4.0" and sys_platform == "win32"

0 commit comments

Comments
 (0)