Skip to content

Commit

Permalink
fix: restore correct Django setting file
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite committed Mar 11, 2024
1 parent d1ede6b commit fbe73b1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
15 changes: 15 additions & 0 deletions samples/python/django/setting.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
INSTALLED_APPS = [
'sample_app'
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'postgres',
'PASSWORD': 'postgres',
'PORT': '5432',
'HOST': 'localhost'
}
}

USE_TZ = True
15 changes: 0 additions & 15 deletions src/test/python/django/setting.py

This file was deleted.

0 comments on commit fbe73b1

Please sign in to comment.