Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giginet/django-debug-toolbar-vcs-info
Add VCS info onto your django-debug-toolbar
https://github.com/giginet/django-debug-toolbar-vcs-info
Last synced: 3 months ago
JSON representation
Add VCS info onto your django-debug-toolbar
- Host: GitHub
- URL: https://github.com/giginet/django-debug-toolbar-vcs-info
- Owner: giginet
- License: mit
- Created: 2015-12-05T12:11:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-17T11:53:26.000Z (over 7 years ago)
- Last Synced: 2024-09-18T03:02:05.926Z (4 months ago)
- Language: Python
- Homepage:
- Size: 101 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
django-debug-toolbar-vcs-info
==============================.. image:: https://travis-ci.org/giginet/django-debug-toolbar-vcs-info.svg?branch=master
:target: https://travis-ci.org/giginet/django-debug-toolbar-vcs-info
.. image:: https://coveralls.io/repos/giginet/django-debug-toolbar-vcs-info/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/giginet/django-debug-toolbar-vcs-info?branch=masterA `Django Debug Toolbar
`_ panel to show VCS info.. image:: https://raw.githubusercontent.com/giginet/django-debug-toolbar-vcs-info/master/images/vcs_info_panel.png
Supported python versions
2.7, 3.3, 3.4, 3.5
Supported django versions
1.7 - 1.10
Supported VCS
gitInstallation
------------------------Use pip_ ::
$ pip install django-debug-toolbar-vcs-info
.. _pip: https://pypi.python.org/pypi/pip
Add ``vcs_info_panel`` into ``INSTALL_APPS`` in ``settings.py`` file
.. code:: python
INSTALLED_APPS += (
'vcs_info_panel',
)Add the panel you want to use. currently, you can use ``GitInfoPanel`` only.
.. code:: python
DEBUG_TOOLBAR_PANELS = (
...
'vcs_info_panel.panels.GitInfoPanel',
)Author
-------------------giginet
LICENSE
-------------------------MIT License