Skip to content

Instantly share code, notes, and snippets.

@vanemanza
Created October 4, 2022 12:35
Show Gist options
  • Save vanemanza/223e54ee42f6c8bc76989faa6cbd928a to your computer and use it in GitHub Desktop.
Save vanemanza/223e54ee42f6c8bc76989faa6cbd928a to your computer and use it in GitHub Desktop.
Ejemplo de como configurar la base de datos
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment