File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1+ .idea
12.venv
23.env
34.python-version
Original file line number Diff line number Diff line change @@ -18,3 +18,10 @@ dependencies = [
1818 " rollbar>=1.3.0" ,
1919 " ruff>=0.11.11" ,
2020]
21+
22+ [build-system ]
23+ requires = [" hatchling" ]
24+ build-backend = " hatchling.build"
25+
26+ [tool .hatch .build .targets .wheel ]
27+ packages = [" task_manager" ]
Original file line number Diff line number Diff line change 7777 'django.middleware.clickjacking.XFrameOptionsMiddleware' ,
7878]
7979
80- ROOT_URLCONF = 'hexletcode .urls'
80+ ROOT_URLCONF = 'task_manager .urls'
8181
8282TEMPLATES = [
8383 {
102102
103103DATABASES = {
104104 'default' : {
105- 'ENGINE' : 'django.db.backends.postgresql' ,
106- 'NAME' : 'djangobd' ,
107- 'USER' : 'tirion' ,
108- 'PASSWORD' : '1234' ,
109- 'HOST' : 'localhost' ,
105+ 'ENGINE' : 'django.db.backends.sqlite3' ,
106+ 'NAME' : BASE_DIR / 'db.sqlite3' ,
110107 }
111108}
112109
You can’t perform that action at this time.
0 commit comments