Skip to content

Commit

Permalink
main
Browse files Browse the repository at this point in the history
  • Loading branch information
ixnur committed Aug 26, 2023
1 parent e788d19 commit efcfadf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions envanter/envanter/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,12 @@

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
'ENGINE': 'django.db.backends.mysql',
'NAME': 'your_database_name',
'USER': 'your_database_user',
'PASSWORD': 'your_database_password',
'HOST': 'localhost',
'PORT': '3306',
}
}

Expand Down

0 comments on commit efcfadf

Please sign in to comment.