Aldryn Addons are re-usable django apps that follow certain conventions to abstract out complicated configuration from the individual django website project into upgradable packages. With this approach it is possible to avoid repetitive “add this to INSTALLED_APPS and that to MIDDLEWARE_CLASSES and add these to urls.py” work. The settings logic is bundled with the addon and only interesting “meta” settings are exposed. It is a framework to utilise such addons in django projects.
The goal is to keep the footprint inside the django website project as small as possible, so updating things usually just mean bumping a version in requirements.txt and no other changes in the project.
This addon still uses the legacy “Aldryn” naming. You can read more about this in our support section.
Contributing
This is a an open-source project. We’ll be delighted to receive your feedback in the form of issues and pull requests. Before submitting your pull request, please review our contribution guidelines.
We’re grateful to all contributors who have helped create and maintain this package. Contributors are listed at the contributors section.
Documentation
See REQUIREMENTS in the setup.py file for additional dependencies:
Installation
aldryn-addons is part of the Divio Cloud platform.
For a manual install:
Add aldryn-addons to your projects requirements.txt or pip install it. It is also highly recommended to install aldryn-django. This is django itself bundled as an addon:
pip install aldryn-addons aldryn-django==1.6.11
At the top if the settings.py add the following code snippet:
INSTALLED_ADDONS = [
'aldryn-django',
]
# add your own settings here that are needed by the installed Addons
import aldryn_addons.settings
aldryn_addons.settings.load(locals())
# add any other custom settings here
Addons can automatically add code to the root urls.py so it’s necessary to add aldryn_addons.urls.patterns() and aldryn_addons.urls.i18n_patterns(). The code below is for Django 1.8 and above. For older versions of Django, please add the prefix parameter to i18n_patterns: i18n_patterns('', ...
from django.urls import re_path, include
from django.conf.urls.i18n import i18n_patterns
import aldryn_addons.urls
urlpatterns = [
# add your own patterns here
] + aldryn_addons.urls.patterns() + i18n_patterns(
# add your own i18n patterns here
re_path(r'^myapp/', include('myapp.urls')),
*aldryn_addons.urls.i18n_patterns() # MUST be the last entry!
)
Please follow the installation instructions for aldryn-django for complete integration. Then follow the setup instructions for aldryn-django-cms for the examples below.
Adding Addons
In this example we’re going to install django CMS Link, which requires Aldryn django CMS.
pip install the Addon:
pip install djangocms-link
Add it to INSTALLED_ADDONS in settings.py:
INSTALLED_ADDONS = [
'aldryn-django',
'aldryn-cms',
'djangocms-link',
]
Copy aldryn_config.py and addon.json from the addon into the addons directory within your project (addons/djangocms-link/aldryn_config.py and addons/djangocms-link/addon.json). If aldryn_config.py defines any settings on the settings Form, put them in addons/djangocms-link/settings.json, if not put {} into it.
You are all set. The code in aldryn_config.py will take care of configuring the addon.
Running Tests
You can run tests by executing:
virtualenv env source env/bin/activate pip install -r tests/requirements.txt python setup.py test
Release files for aldryn-addons 2.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aldryn-addons-2.1.0.tar.gz | 11.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aldryn_addons-2.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 22.3 kB
Release files / aldryn-addons-2.1.0.tar.gz
| Download URL | aldryn-addons-2.1.0.tar.gz |
|---|---|
| Size | 11.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1395fc49c2a592bfd66d022de577322f016e636ec58823ff30d883efdcb3795a
|
|
BLAKE2b-256 checksum How to use checksums |
0dc005218d637b0daf28a257416ae6a7fb2297f440de5aae0be5ccc4fbe3270f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.0 CPython/3.8.5
|
Release files / aldryn_addons-2.1.0-py3-none-any.whl
| Download URL | aldryn_addons-2.1.0-py3-none-any.whl |
|---|---|
| Size | 10.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f0fbc93e77c9ee8cef3457f4b880d7e4e8484a1a4dee21bf449ae4ce59ec5ea5
|
|
BLAKE2b-256 checksum How to use checksums |
0ef2b5c6bbe355d173487077649a206df8ab7ded98c92749669774bd3bc15247
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.0 CPython/3.8.5
|