Skip to content

Commit 67ca5ba

Browse files
committed
Remove redundant DATABASE_URL settings
These match the new defaults in the settings file.
1 parent a4a8346 commit 67ca5ba

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ build: _uv
2222
uv pip install -r requirements.prod.txt -r requirements.dev.txt
2323
python manage.py collectstatic --no-input
2424
rm --force ccbv.sqlite
25-
DATABASE_URL=sqlite:///ccbv.sqlite python manage.py migrate
26-
DATABASE_URL=sqlite:///ccbv.sqlite python manage.py load_all_django_versions
25+
python manage.py migrate
26+
python manage.py load_all_django_versions
2727

2828
run-prod:
29-
DATABASE_URL=sqlite:///ccbv.sqlite gunicorn core.wsgi --log-file -
29+
gunicorn core.wsgi --log-file -
3030

3131
compile: _uv
3232
uv pip compile requirements.prod.in --output-file=requirements.prod.txt

0 commit comments

Comments
 (0)