https://github.com/willandskill/django-executor
https://github.com/willandskill/django-executor
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/willandskill/django-executor
- Owner: willandskill
- License: other
- Created: 2016-02-05T10:47:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-05-30T04:26:56.000Z (about 6 years ago)
- Last Synced: 2025-04-23T22:44:11.316Z (about 1 year ago)
- Language: Python
- Size: 313 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# django-executor
Manage your django management commands easily within your browser
## Installation
* ```pip install django-executor```
* Add "django_executor" to INSTALLED_APPS
* ```./manage.py migrate django_executor```
## Manage management commands
* Login to django administration
* Set your user privileges to: *is_superuser = True*
* Open /django-executor/ in browser
## Configuration
Add the default DJANGO_EXECUTOR_CONFIG and modify the following attributes:
```
DJANGO_EXECUTOR_CONFIG = {
'HIDE_FROM_DJANGO_ADMIN': False, # Hides Log model from django admin
'HIDE_DJANGO_MANAGEMENT_COMMANDS': True, # Hides all django.* related management commands
'EXCLUDED_APPS': [] # Add apps your want to exclude
}
```
### Tested on Django 1.8.6 > 1.9.1