This is a depot for sharing Cyphon configurations.
Configurations are saved as Django fixtures, which are described here. If you'd like to share your Cyphon configurations with the community, please submit a pull request to this repo.
You can import and export configurations as fixtures by following the instructions here.
When submitting fixtures, please avoid using primary keys (e.g., "pk": 1
). An object with a primary key may throw an IntegrityError
if an object with that same primary key already exists in a database. Instead, use natural keys. The exception to this rule is if an object is referenced by a generic relation, which currently does not support use of natural keys (see ticket #23268).