c1e9484817
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-seed?expand=0&rev=7
15 lines
215 B
Python
15 lines
215 B
Python
from faker import Faker
|
|
fake = Faker()
|
|
|
|
DATABASES={
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
}
|
|
}
|
|
INSTALLED_APPS=(
|
|
'django_seed',
|
|
)
|
|
SECRET_KEY=fake.sha1()
|
|
|