mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
32 lines
757 B
Python
Executable File
32 lines
757 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main() -> None:
|
|
"""
|
|
Main function.
|
|
|
|
It does several things:
|
|
1. Sets default settings module, if it is not set
|
|
2. Warns if Django is not installed
|
|
3. Executes any given command
|
|
"""
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'server.settings')
|
|
|
|
try:
|
|
from django.core import management # noqa: WPS433
|
|
except ImportError:
|
|
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?',
|
|
)
|
|
|
|
management.execute_from_command_line(sys.argv)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|