42 lines
		
	
	
		
			875 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			875 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| local_path = lambda path: os.path.join(os.path.dirname(__file__), path)
 | |
| 
 | |
| DATABASES = {
 | |
|     'default': {
 | |
|         'ENGINE': 'django.db.backends.sqlite3',
 | |
|         'NAME': ':memory:'
 | |
|     }
 | |
| }
 | |
| 
 | |
| SITE_ID = 1
 | |
| 
 | |
| INSTALLED_APPS = [
 | |
|     'django.contrib.contenttypes',
 | |
|     'django.contrib.sites',
 | |
|     'django.contrib.sessions',
 | |
|     'django.contrib.staticfiles',
 | |
|     'django.contrib.auth',
 | |
|     'django.contrib.admin',
 | |
|     'bootstrapform',
 | |
| ]
 | |
| 
 | |
| ROOT_URLCONF = 'tests.urls'
 | |
| 
 | |
| MEDIA_URL = '/media/'
 | |
| 
 | |
| MEDIA_ROOT = local_path('media')
 | |
| 
 | |
| STATICFILES_STORAGE = 'pipeline.storage.PipelineStorage'
 | |
| STATIC_ROOT = local_path('static/')
 | |
| STATIC_URL = '/static/'
 | |
| STATICFILES_FINDERS = (
 | |
|     'django.contrib.staticfiles.finders.FileSystemFinder',
 | |
|     'django.contrib.staticfiles.finders.AppDirectoriesFinder'
 | |
| )
 | |
| 
 | |
| TEMPLATE_DIRS = (
 | |
|     local_path('templates'),
 | |
| )
 | |
| 
 | |
| SECRET_KEY = 'django-bootstrap-form'
 | 
