You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings_mysql.py 241B

123456789101112
  1. from settings import *
  2. DATABASES = {
  3. 'default': {
  4. 'ENGINE': 'django.db.backends.mysql',
  5. 'NAME': 'oscar_vagrant',
  6. 'USER': 'travis',
  7. 'PASSWORD': '',
  8. 'HOST': 'localhost',
  9. 'PORT': '',
  10. }
  11. }