-
Notifications
You must be signed in to change notification settings - Fork 36
/
integreat-cms-cli
executable file
·54 lines (43 loc) · 1.64 KB
/
integreat-cms-cli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
""" Django's command-line utility for administrative tasks. """
from __future__ import annotations
import configparser
import os
import sys
def read_config() -> None:
"""
Reads and parses the corresponding configurations.
"""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "integreat_cms.core.settings")
# Read config from config file
config = configparser.ConfigParser(interpolation=None)
config.read("/etc/integreat-cms.ini")
for section in config.sections():
for KEY, VALUE in config.items(section):
os.environ.setdefault(f"INTEGREAT_CMS_{KEY.upper()}", VALUE)
def main() -> None:
"""
Application entry point
:raises ImportError: If the Django framework is not installed or not in the path, an import error is risen.
"""
read_config()
try:
# pylint: disable=import-outside-toplevel
from django.core.management import execute_from_command_line
except ImportError:
# The above import may fail for some other reason. Ensure that the
# issue is really that Django is missing to avoid masking other
# exceptions on Python 2.
try:
# pylint: disable=import-outside-toplevel,unused-import
import django
except ImportError as e:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from e
raise
execute_from_command_line(sys.argv)
if __name__ == "__main__":
main()