Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manage.py - github.com/nextcloud/appstore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f145d8b752569da43796420687242d795e4d015 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "nextcloudappstore.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)