Complete Manual Under Construction!
-
Download the project.
-
Install Django or activate an environment having Django 3.0.3 or higher.
-
Open terminal inside the downloaded project and run the following command:
python manage.py migrate --database=admin_db
This will make the admin database ready.
-
Let's create a superuser in our newly created database.
python manage.py createsuperuser --database=admin_db
-
Now start the server:
python manage.py runserver
-
Go to
localhost:8000
to make an account request. -
Go to
localhost:8000/admin
and login with superuser credentials and clickAccount Requests
. -
Select the request and select
Grant selected requests
in actions dropdown menu and click go. This will create the account and its separate database for the requested institute. -
The newly created account can be logged in with request username and password as 'ins_admin'. (Will be generated randomly and sent to the provided email address once the request is approved).
-
The further functionalities are designed but are currently in implementation phase.