Procházet zdrojové kódy

Add contribution instructions

Denis K před 8 roky
rodič
revize
1e2aae5183
1 změnil soubory, kde provedl 88 přidání a 6 odebrání
  1. 88 6
      docs/contribution.rst

+ 88 - 6
docs/contribution.rst

@@ -1,13 +1,13 @@
 Contributing
 ============
 
-Django JET is open-source and every member of the community can contribute to it. Below are some guidelines on how
-to help with the project and make it better.
+Django JET is open-source and every member of the community can contribute to it. We are happy to see patches
+and improvements with Django JET. But please keep in mind that there are some guidelines you should follow.
 
-.. _rules:
+.. _requirements:
 
-Rules
------
+Requirements
+------------
 
 * Git master branch should always be stable
 * All pull requests are made to git dev branch
@@ -59,7 +59,89 @@ In order to be merged into Django JET, contributions must have the following:
 
 * Desirably a test case that demonstrates the previous flaw that now passes with the included patch
 * If it adds/changes a public API, it must also include documentation for those changes
-* Must be appropriately licensed (see rules_)
+* Must be appropriately licensed (see requirements_)
 
 If your contribution lacks any of these things, they will have to be added by a core contributor before
 being merged into Django JET proper, which may take time to get to.
+
+Contribution Styles/Javascript/Translations
+-------------------------------------------
+
+Javascript/CSS/Translations need to be built each time after updating. For this you need `Node <http://nodejs.org>`_
+and `Gulp <http://gulpjs.com>`_. It's out of the scope of this tutorial to go into details, but you should
+find lots of useful references on how to install it.
+
+Node is needed for Gulp, so install it using your system package manager:
+
+.. code-block:: bash
+
+    apt-get install -nodejs
+    # or
+    yum install nodejs
+    # or
+    brew install node
+    # ...
+
+Now you are able to install Gulp globally:
+
+.. code-block:: bash
+
+    npm install --global gulp-cli
+
+Change your working directory to Django JET where ``package.json`` and ``gulpfile.js`` are located and
+install Gulp dependencies:
+
+.. code-block:: bash
+
+    npm install
+
+Now you are ready for contribution. Run Gulp from JET's directory to build all styles/scripts/locales and
+start watching for changes (gulp will rebuild files as soon they change):
+
+.. code-block:: bash
+
+    gulp
+
+Or if you want just to perform a single build without watching for changes run:
+
+.. code-block:: bash
+
+    gulp build
+
+Building produces the following files:
+
+* CSS files for each theme:
+
+  * jet/static/jet/css/themes/THEME_NAME/base.css
+  * jet/static/jet/css/themes/THEME_NAME/jquery-ui.theme.css
+  * jet/static/jet/css/themes/THEME_NAME/select2.theme.css
+
+* CSS for other JS libraries used in JET – jet/static/jet/css/vendor.css
+* Combined JS scripts of JET – jet/static/jet/js/build/bundle.min.js
+* Localization files for JS libraries:
+
+  * jet/static/jet/js/i18n/jquery-ui/
+  * jet/static/jet/js/i18n/jquery-ui-timepicker/
+  * jet/static/jet/js/i18n/select2/
+
+* Compiled Django localizations:
+
+  * jet/locale/LOCALE/LC_MESSAGES/django.mo
+  * jet/locale/LOCALE/LC_MESSAGES/djangojs.mo
+  * jet/dashboard/locale/LOCALE/LC_MESSAGES/django.mo
+  * jet/dashboard/locale/LOCALE/LC_MESSAGES/djangojs.mo
+
+You should commit generated build files together with sources.
+
+Contribution Documentation
+--------------------------
+
+If you update documentation files, you can build the html files (this is not needed with a pull-request,
+but you might wanna check how documentation will look like locally). To do so change your working directory
+to ``docs/`` inside JET and run:
+
+.. code-block:: bash
+
+    make html
+
+``docs/_build/html/`` folder will contain all html files including starting ``index.html``.