6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-19 16:09:02 +00:00
tutor/docs/tutor.rst

46 lines
752 B
ReStructuredText
Raw Normal View History

2018-12-26 15:00:47 +00:00
.. _tutor:
Tutor development
=================
Start by cloning the Tutor repository::
2018-12-26 15:00:47 +00:00
git clone https://github.com/regisb/tutor.git
cd tutor/
2018-12-26 15:00:47 +00:00
Install requirements
--------------------
::
pip install -r requirements/dev.txt
Bundle ``tutor`` executable
---------------------------
::
make bundle
Generate the documentation
--------------------------
::
pip install sphinx sphinx_rtd_theme
cd docs/
make html
You can then browse the documentation with::
make browse
2019-02-13 22:44:42 +00:00
Releasing a new version
-----------------------
- Bump the ``__version__`` value in ``tutor/__about__.py``.
2019-02-13 22:44:42 +00:00
- Replace "Latest" by the version name in CHANGELOG.md.
- Create a commit with the version changelog.
- ``git push``
- ``make tag``