· 7 years ago · Jun 11, 2018, 08:54 PM
1from niproyecciones.settings import *
2
3SECRET_KEY = ''
4
5DEBUG = True
6
7ALLOWED_HOSTS = ['*']
8
9DATABASES = {
10 'default': {
11 'ENGINE': 'django.db.backends.postgresql',
12 'NAME': '',
13 'USER': '',
14 'PASSWORD': '',
15 'PORT': '5432',
16 'HOST': '127.0.0.1',
17 }
18}
19
20STATIC_URL = '/static/'
21
22# uncomment next two lines for local server static files.
23STATIC_ROOT = ''
24STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]