49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
import os
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
# DATABASES = {
|
|
# 'default': {
|
|
# 'ENGINE': 'django.db.backends.sqlite3',
|
|
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
|
# }
|
|
# }
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.contrib.gis.db.backends.postgis',
|
|
'NAME': 'newmediaDB1',
|
|
'USER': 'newmedia',
|
|
'PASSWORD': 'newmedia2020!@#',
|
|
'HOST': '210.77.68.250',
|
|
'PORT': '5432',
|
|
}
|
|
}
|
|
# DATABASES = {
|
|
# 'default': {
|
|
# 'ENGINE': 'django.db.backends.sqlite3',
|
|
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
|
# }
|
|
# }
|
|
STATIC_URL = '/static/'
|
|
|
|
STATICFILES_DIRS = [
|
|
os.path.join(BASE_DIR, "static"),
|
|
]
|
|
MEDIA_URL = '/static/upload/'
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'static/upload/')
|
|
import os
|
|
if os.name == 'nt':
|
|
import platform
|
|
OSGEO4W = r"C:\OSGeo4W"
|
|
if '64' in platform.architecture()[0]:
|
|
OSGEO4W += "64"
|
|
assert os.path.isdir(OSGEO4W), "Directory does not exist: " + OSGEO4W
|
|
os.environ['OSGEO4W_ROOT'] = OSGEO4W
|
|
os.environ['GDAL_DATA'] = OSGEO4W + r"\share\gdal"
|
|
os.environ['PROJ_LIB'] = OSGEO4W + r"\share\proj"
|
|
os.environ['PATH'] = OSGEO4W + r"\bin;" + os.environ['PATH']
|