With varieties of Learning Materials, this Student Study Portal provides an efficient and effective way students take notes, read books, take homeworks and so much more with different learning APIs (Youtube, Wikipedia, Dictionary etc) embedded in the application.
https://adastudentstudyportal.herokuapp.com/
Open a command prompt on your PC and run the command below:
git clone https://github.com/JolomonSon/Student-Study-Portal.git
Before installing the requirements, you need to have python installed on your PC. Python Setup and Installation. Open the cloned application (folder) and run the command below to install all requirements for the application.
pip install -r requirements.txt
Start your application using the following command in your command prompt:
python manage.py runserver
You can access your local server using this address on any web browser: http://127.0.0.1:8000/
Before you access the admin dashboard, you need to create a superuser.
python manage.py createsuperuser.
After following instructions of creating username, email address and password, you can access your admin dashboard with your login details
You can check up django documentation page for any further information. Django Docs.