Manifest
application_kit.settings
get_redis_instance_and_extras
get_redis_instance_and_extras(dependency_name)
Returns a redis instance for the dependency name.
Source code in application_kit/settings.py
27 28 29 30 31 32 33 34 35 36 37 38 | |
get_redis_instance
get_redis_instance(dependency_name)
Returns a redis instance from the dependency named dependency_name
Source code in application_kit/settings.py
55 56 57 58 59 60 | |
get_configuration
get_configuration(configuration_name)
Returns the configuration value.
Source code in application_kit/settings.py
63 64 65 | |
get_service_url
get_service_url(service_name, path=None)
Returns the service URL for service_name.
Source code in application_kit/settings.py
68 69 70 71 72 73 | |
get_django_databases
get_django_databases()
Returns a django database dict.
Source code in application_kit/settings.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | |
get_database_url
get_database_url(name)
Returns a BenderDbUrl for the database dependency named name.
Source code in application_kit/settings.py
98 99 100 101 | |
get_version
get_version()
Returns the current version.
Source code in application_kit/settings.py
117 118 119 120 121 | |
get_environment
get_environment()
Returns the current Environment.
Source code in application_kit/settings.py
124 125 126 127 128 | |
get_service_name
get_service_name(worker_name)
Returns the current service name, or optionally worker name.
Source code in application_kit/settings.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
get_async_redis_instance_and_extras
get_async_redis_instance_and_extras(dependency_name)
Returns a redis instance for the dependency name.
Source code in application_kit/settings.py
183 184 185 186 187 188 189 190 191 192 193 194 195 196 | |