Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dannluciano/django-miniexplorer
SQL Explorer for Django Admin
https://github.com/dannluciano/django-miniexplorer
django django-application
Last synced: 4 days ago
JSON representation
SQL Explorer for Django Admin
- Host: GitHub
- URL: https://github.com/dannluciano/django-miniexplorer
- Owner: dannluciano
- License: mit
- Created: 2020-08-29T03:16:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-11T18:17:11.000Z (8 months ago)
- Last Synced: 2025-02-01T00:15:07.312Z (15 days ago)
- Topics: django, django-application
- Language: Python
- Homepage: https://github.com/dannluciano/django-miniexplorer
- Size: 1.57 MB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# django-miniexplorer
Mini SQL Explorer for Django Admin
![Screen Shot of Mini Explorer](./doc/screenshot.png)
## Features
- [x] SQL Explorer
- [x] Only safe SQL queries
- [x] SQL queries formatting
- [x] Show data base schema
- [x] AJAX SQL queries
- [x] Translate to English, and Brazilian Portuguese
- [x] Auto complete
- [ ] Refactor JavaScript source
- [ ] Add Automatic Tests## How to Install
```shell
$ pip install django-miniexplorer
```## How to use
Add `'miniexplorer'` in your installed apps Django project `settings.py`
```python
# settings.py
INSTALLED_APPS = [
"miniexplorer",
...
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
]
```Run `python manage.py migrate` and `python manage.py runserver`.
Open your preferred Browser and go to `Admin Dashboard` normally in `127.0.0.1:8000` or `localhost:8000`.
## Authors
* **Dann Luciano** - *Initial work* - [@dannluciano](https://twitter.com/dannluciano)
See also the list of [contributors](https://github.com/dannluciano/django-miniexplorer/contributors) who participated in this project.
## License
This project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details
## Acknowledgments
Inspired:
* [django-sql-explorer](https://github.com/groveco/django-sql-explorer)
* and by Corona VirusThanks to [IFPI](https://www.ifpi.edu.br/) for pay my salary!
![IFPI](./doc/ifpi.png)