Copy settings_local.py from docker dir
- Legacy-Id: 12106
This commit is contained in:
parent
e0ef65419b
commit
23ff0c5d33
|
@ -6,8 +6,13 @@ import subprocess
|
|||
import requests
|
||||
import sys
|
||||
import stat
|
||||
import shutil
|
||||
|
||||
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
||||
basedir = os.path.dirname(os.path.dirname(__file__))
|
||||
|
||||
sys.path.append(basedir)
|
||||
|
||||
shutil.copyfile(os.path.join(basedir, 'docker/settings_local.py'), os.path.join(basdir, 'settings_local.py'))
|
||||
|
||||
from ietf.settings_sqlitetest import * # we don't import from django.conf here, on purpose
|
||||
|
||||
|
|
Loading…
Reference in a new issue