You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
333 B
13 lines
333 B
4 months ago
|
"""Sets up the Django environment for readonly access to the database.
|
||
|
|
||
|
This sets the DJANGO_SETTINGS_MODULE to point to frontend/settings_readonly.py.
|
||
|
Django will then use this file for configuration.
|
||
|
|
||
|
"""
|
||
|
|
||
|
import os
|
||
|
|
||
|
|
||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
|
||
|
'autotest_lib.frontend.settings_readonly')
|