https://github.com/eventbrite/tikibar
A debugging and information toolbar for django, designed for lightweight impact so it can be enabled selectively and run in production.
https://github.com/eventbrite/tikibar
debugging django django-orm
Last synced: about 1 month ago
JSON representation
A debugging and information toolbar for django, designed for lightweight impact so it can be enabled selectively and run in production.
- Host: GitHub
- URL: https://github.com/eventbrite/tikibar
- Owner: eventbrite
- License: other
- Created: 2014-08-26T16:43:52.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2022-12-26T20:00:59.000Z (about 3 years ago)
- Last Synced: 2023-03-11T06:18:30.195Z (almost 3 years ago)
- Topics: debugging, django, django-orm
- Language: HTML
- Homepage:
- Size: 150 KB
- Stars: 23
- Watchers: 104
- Forks: 5
- Open Issues: 11
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
Tikibar
=======
A debugging and information toolbar for django, designed for lightweight impact
so it can be enabled selectively and run in production.
Features
--------
Among other things, it includes:
* CPU usage time statistics
* Used template tracking
* SQL call logging and timing
* Cross-domain functionality
Getting Started
---------------
To use Tikibar, you need to add it to your Django ``INSTALLED_APPS`` and then
include the middleware (``tikibar.middleware.TikibarMiddleware``) in your
Django middleware configuration.
Release Process
---------------
* Bump version in ``tikibar/version.py`` | ``__version_info__ = (x, x, x)``.
* ``git add tikibar/version.py``
* ``git commit -am 'Bump tikibar to x.x.x'``
* ``git push origin master``
* ``git tag -a x.x.x -m "Bump tikibar to x.x.x"``
* ``git push origin x.x.x``