mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-02 18:54:42 +00:00
12 lines
326 B
Text
12 lines
326 B
Text
|
|
#!/Users/utkucanbiyikli/Desktop/Projects/django-notifications/env/bin/python3
|
||
|
|
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
import re
|
||
|
|
import sys
|
||
|
|
|
||
|
|
from django.core.management import execute_from_command_line
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||
|
|
sys.exit(execute_from_command_line())
|