Skip to content

Commit

Permalink
setting fake db as default
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Dobbelaere committed Nov 27, 2023
1 parent 36599b7 commit d62ded1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions OneSila/OneSila/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,18 @@
ASGI_APPLICATION = 'OneSila.asgi.application'


DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'fake',
'USER': 'fake',
'PASSWORD': 'fake',
'HOST': 'localhost',
'PORT': '5432',
}
}


# Password validation
# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators

Expand Down

0 comments on commit d62ded1

Please sign in to comment.