mirror of
https://github.com/YunoHost-Apps/scovie_ynh.git
synced 2024-09-03 20:16:29 +02:00
15 lines
270 B
Python
15 lines
270 B
Python
#!__INSTALL_DIR__/venv/bin/python
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main():
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|