DBROOT Oracle is simple web user interface for Oracle.
DEMO:
- Metrics
- Objects
- Privileges
- Dynamic performance views
- Python 3.6
- Django 2.0
- cx_Oracle 6.3
- MySQL 5.7
$ create user 'dbrootuser'@"{from_domain}" identified by "{password}";
$ vi project/settings.py
$ create user dbrootuser identified by {password};
$ grant connect to dbrootuser;
$ grant select on dba_tab_privs to dbrootuser;
$ grant select any table to dbrootuser;
$ grant select any dictionary to dbrootuser;
$ vi app/consts.py
$ git clone https://github.com/dbroot-oracle.git
$ cd dbroot-oracle
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver 8000
This software is released under the MIT License. See LICENSE for more details.