We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64beb37 commit 4b47d89Copy full SHA for 4b47d89
Makefile
@@ -1,20 +1,17 @@
1
install:
2
uv sync
3
4
-#lint:
5
-# ruff check .
6
-#
+lint:
+ ruff check .
+
7
migrate:
8
uv run python manage.py migrate
9
10
-#collectstatic:
11
-# uv run python manage.py collectstatic
12
13
build:
14
./build.sh
15
16
-#test:
17
-# pytest
+test:
+ pytest
18
19
render-start:
20
gunicorn task_manager.wsgi:application
task_manager/settings.py
@@ -103,10 +103,10 @@
103
DATABASES = {
104
'default': {
105
'ENGINE': 'django.db.backends.postgresql',
106
- 'NAME': 'djangobd_cbxu',
+ 'NAME': 'djangobd',
107
'USER': 'tirion',
108
- 'PASSWORD': 'HLKv6Q0UIlVKOqVi0oz0wcqKki5KpBz1',
109
- 'HOST': 'dpg-d17u1j8dl3ps739718b0-a',
+ 'PASSWORD': '1234',
+ 'HOST': 'localhost',
110
}
111
112
0 commit comments