mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
b378a519a6
Update via https://github.com/jedie/manageprojects and https://github.com/jedie/cookiecutter_templates/
15 lines
267 B
Python
Executable file
15 lines
267 B
Python
Executable file
#!__DATA_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()
|