
This is a structure that will allow us to install everything under "ara" as separate packages but inside the same module. For example, installing ara-server will provide ara.server and ara.api. Installing ara-clients will provide ara.clients, ara-plugins will supply ara.plugins, etc. Change-Id: I27ee431c4e5d946f558befc12937ba2f3c0d020b
11 lines
253 B
Python
Executable File
11 lines
253 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ara.server.settings")
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|