Skip to content

Commit 4b47d89

Browse files
committed
fix actions
1 parent 64beb37 commit 4b47d89

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

Makefile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
install:
22
uv sync
33

4-
#lint:
5-
# ruff check .
6-
#
4+
lint:
5+
ruff check .
6+
77
migrate:
88
uv run python manage.py migrate
9-
#
10-
#collectstatic:
11-
# uv run python manage.py collectstatic
129

1310
build:
1411
./build.sh
1512

16-
#test:
17-
# pytest
13+
test:
14+
pytest
1815

1916
render-start:
2017
gunicorn task_manager.wsgi:application

task_manager/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@
103103
DATABASES = {
104104
'default': {
105105
'ENGINE': 'django.db.backends.postgresql',
106-
'NAME': 'djangobd_cbxu',
106+
'NAME': 'djangobd',
107107
'USER': 'tirion',
108-
'PASSWORD': 'HLKv6Q0UIlVKOqVi0oz0wcqKki5KpBz1',
109-
'HOST': 'dpg-d17u1j8dl3ps739718b0-a',
108+
'PASSWORD': '1234',
109+
'HOST': 'localhost',
110110
}
111111
}
112112

0 commit comments

Comments
 (0)