mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
9 lines
223 B
Python
9 lines
223 B
Python
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ["DJANGO_SETTINGS_MODULE"] = "package_test.settings"
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|