Skip to content

Commit

Permalink
Update settings.py and cron jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
davevad93 authored Nov 29, 2024
1 parent 01f90b0 commit 6ffcc71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ jobs:
cd myproject
pip install -r requirements.txt
- name: Apply Migrations
run: |
cd myproject
python manage.py makemigrations
python manage.py migrate
- name: Run Django test
run: |
cd myproject
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ jobs:
cd myproject
pip install -r requirements.txt
- name: Apply Migrations
run: |
cd myproject
python manage.py makemigrations
python manage.py migrate
- name: Run Django test
run: |
cd myproject
Expand Down
8 changes: 4 additions & 4 deletions myproject/myproject/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
# }
}

# Password validation
Expand Down

0 comments on commit 6ffcc71

Please sign in to comment.