Skip to content

Commit

Permalink
example
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Nov 7, 2024
1 parent 1361abd commit 3bd597b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions sal/example_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@

BASIC_AUTH = True

USE_SAML = False

DATABASES = {
'default': {
"default": {
# Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'ENGINE': 'django.db.backends.sqlite3',
"ENGINE": "django.db.backends.sqlite3",
# Or path to database file if using sqlite3.
'NAME': os.path.join(PROJECT_DIR, 'sal.db'),
"NAME": os.path.join(PROJECT_DIR, "sal.db"),
# The following settings are not used with sqlite3:
'USER': '',
'PASSWORD': '',
"USER": "",
"PASSWORD": "",
# Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'HOST': '',
'PORT': '', # Set to empty string for default.
"HOST": "",
"PORT": "", # Set to empty string for default.
}
}
2 changes: 1 addition & 1 deletion sal/version.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>version</key>
<string>4.4.0.2304</string>
<string>4.4.0.2305</string>
</dict>
</plist>

0 comments on commit 3bd597b

Please sign in to comment.