from django.core.management.utils import get_random_secret_key # XML-RPC interface of opennebula OPENNEBULA_URL = 'https://opennebula.ungleich.ch:2634/RPC2' # user:pass for accessing opennebula OPENNEBULA_USER_PASS = 'user:password' POSTGRESQL_DB_NAME="uncloud" # See https://django-auth-ldap.readthedocs.io/en/latest/authentication.html LDAP_ADMIN_DN="" LDAP_ADMIN_PASSWORD="" LDAP_SERVER_URI = "" # Stripe (Credit Card payments) STRIPE_KEY="" STRIPE_PUBLIC_KEY="" # The django secret key SECRET_KEY=get_random_secret_key()