· 6 years ago · Aug 05, 2019, 01:56 PM
1"""
2Local (host dependent) sensitive settings
3"""
4import os
5
6
7DEBUG = True
8
9BASE_DIR = os.path.realpath(os.path.dirname(__file__))
10
11config = {
12
13 'SECRET_KEY': '83tym26+@-fcnbd#6f1wo^etpzl&pz9f!29o4)3=*hyhv0pfe-', # FIX ME TO UNIQUE VALUE
14 'API_KEY': 'eyJrIjoiTDJjdUpDRHdrbFRZMGd2MlJhWmV0R3dzeldmTVlRbzciLCJuIjoidGVzdF9jZWRyaWMiLCJpZCI6MTd9',
15 'DATABASES': {
16 'default': {
17 'ENGINE': 'django.db.backends.sqlite3',
18 'NAME': os.path.join(BASE_DIR, 'rucioopint.sqlite3'), # same location as this config file
19 }
20 },
21 'TMPDIR': "/Users/panos/projects/rucio_opint_interface/rucio-opint-backend-django/tmp",
22 'MIGRATIONS_STORE_PATH': os.path.join(BASE_DIR, 'migrations')
23}