Skip to content

Commit

Permalink
Merge tag 'v1.6.4' into develop
Browse files Browse the repository at this point in the history
v1.6.4
  • Loading branch information
ambroisemaupate committed Aug 4, 2021
2 parents 35b0cdd + 661d4d3 commit 8565a08
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@
# built documents.
#
# The short X.Y version.
version = '1.6.3'
version = '1.6.4'
# The full version, including alpha/beta/rc tags.
release = '1.6.3'
release = '1.6.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
22 changes: 21 additions & 1 deletion src/developer/first-steps/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,29 @@ For new projects **Roadiz** can be easily setup using ``create-project`` command
*Composer* will prompt you if you want to can versioning history. Choose the default answer ``no`` as we definitely
want to replace *standard-edition* *Git* with our own versioning. Then you will be able to customize every files
in your projects and save them using Git, not only your theme. Of course we added a default ``.gitignore`` file to
prevent your configuration setting and entry points to be commited in your *Git* history. That way you can have
prevent your configuration setting and entry points to be committed in your *Git* history. That way you can have
different configuration on development and on your production server without bothering about merge conflicts.

Register theme services
^^^^^^^^^^^^^^^^^^^^^^^

**Do not forget** to add the following lines to your ``app/AppKernel.php`` file once you generated a new theme:

.. code:: php
// app/AppKernel.php
public function register(\Pimple\Container $container)
{
parent::register($container);
/*
* Add your own service providers.
*/
$container->register(new \Themes\FooBarTheme\Services\FooBarThemeServiceProvider());
}
.. note::

For *Windows* users, ``bin/roadiz themes:generate --symlink --relative FooBar`` command can be used
Expand Down

0 comments on commit 8565a08

Please sign in to comment.