Skip to content

Commit

Permalink
Readme updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Sep 13, 2019
1 parent a4d9ca1 commit f5916b3
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ Let's make ``uwsgicfg.py``. There we configure uWSGI using nice ``PythonSection`
Runtime configuration
~~~~~~~~~~~~~~~~~~~~~

**uwsgiconf** comes with ``runtime`` package which is similar to **uwsgidecorators** but offers different abstractions.
**uwsgiconf** comes with ``runtime`` package which is similar to **uwsgidecorators** but
offers different abstractions to provide useful shortcuts and defaults.

These abstractions will also use a stub ``uwsgi`` module when the real one is not available.

Expand All @@ -120,27 +121,44 @@ A couple of examples:
@register_timer_rb(10, repeat=2)
def repeat_twice():
"""This function will be called twice with 10 seconds interval
(by default in first available mule) using red-black tree based timer.
using red-black tree based timer.
"""
with lock():
# Code under this context manager will be locked
# using default (0) uWSGI lock.
# Code under this context manager will be locked.
do_something()
Third parties
~~~~~~~~~~~~~
Allows for runtime access to:

**Django.** Run your Django-based project on uWSGI using manage command:
* Alarms
* Caches
* Locks
* Logging
* Monitoring
* Mules
* RPC
* Scheduling
* Signals
* Websockets
* and more


Third parties support
~~~~~~~~~~~~~~~~~~~~~

**Django**

Run your Django-based project on uWSGI using manage command:

.. code-block:: bash
$ ./manage.py uwsgi_run
$ ./manage.py uwsgi_reload --force
Other commands are available.
* Other commands are available.
* uWSGI summary and statistics are also available from Admin interface.


System configs
Expand Down

0 comments on commit f5916b3

Please sign in to comment.