This is the main package of the Thumbor Community. This will handle the loading of custom extensions to Thumbor.
Please note that this is still in beta stage for now.
- Install thumbor (see https://github.com/thumbor/thumbor)
- Clone this repository
- If you've set a virtualenv up for thumbor, activate it.
- Install the Thumbor Community Core:
$ cd thumbor-community/core
$ pip install .
- Install the extensions you wish to load.
- Register the extensions to load within Thumbor's configuration file:
COMMUNITY_EXTENSIONS = [
'my_extension',
...
]
- Launch thumbor with the Thumbor Community custom application:
$ thumbor --conf=my_configuration_file -a tc_core.app.App
Documentation is ongoing. You may see it at Read the Docs. Feel free to contribute to improve it!