This section describes how to develop LFS.
There is an installer based on zc.buildout, which should make the installation straightforward:
If you consider to contribute code to LFS, please read the following statements first:
First of all, you are very welcome!
Generally, it would be great if you would discuss new stuff first. We are very reluctant to add new things. Every new feature should have a real live use case. Find us on IRC or the LFS Google Group.
Please make sure that you just add related code to your fork. This makes it easier to review and pull your code.
The code must be put under a permissive free software licenses like BSD, otherwise we can’t add it. For instance, code under the GPL or a other copyleft software licenses won’t be added to the core.
Python code must follow PEP 8. The maximum of 79 characters per line is the only exception. You may want to check your code with pep8. The following statement should run without complaints:
$ pep8 --repeat --ignore=E501 /path/to/lfs
Every new feature must have unit tests and documentation.
All tests must pass. Please check this with:
$ bin/django test lfs.core
New features shouldn’t make LFS slower. Please see Benchmarking LFS.
Please refer to Contributing translations.