Switch to unified view
a/Allura/allura/app.py | b/Allura/allura/app.py | ||
---|---|---|---|
... |
... |
||
162 | class Application(object): |
162 | class Application(object): |
163 | """ |
163 | """ |
164 | The base Allura pluggable application |
164 | The base Allura pluggable application |
165 | 165 | ||
166 | After extending this, expose the app by adding an entry point in your |
166 | After extending this, expose the app by adding an entry point in your |
167 | setup.py: |
167 | setup.py::
|
168 | 168 | ||
169 | [allura] |
169 | [allura] |
170 | myapp = foo.bar.baz:MyAppClass |
170 | myapp = foo.bar.baz:MyAppClass |
171 | 171 | ||
172 | :cvar str status: One of 'production', 'beta', 'alpha', or 'user'. By |
172 | :cvar str status: One of 'production', 'beta', 'alpha', or 'user'. By |