StudyBox is a platform that promotes positive competition among friends. Anyone can create tasks which all of your friends are required to complete. You can also track your progress alongside your friends. View the tasks completed by others and gain inspiration from their achievements. The graph compares the number of tasks completed by all users.
HTML-CSS along with Bootstrap framework is used on the frontend while Django is used on the backend. SQLite is used to persist data.
-
Registed and login securely.
-
Create tasks.
-
Complete your tasks while viewing the progress of your friends.
-
Intuitive graph that compares the progress of all users.
-
Build a healthy competition among your friends.
First clone the repository from Github and switch to the new directory:
$ git clone [email protected]:ajayjainn/study-box.git
$ cd study-box
Activate the virtualenv for your project.
If you don't have django installed for python 3 then run:
$ pip3 install django
Install project dependencies:
$ pip install -r requirements.txt
Then simply apply the migrations:
$ python manage.py migrate
You can now run the development server:
$ python manage.py runserver
Once the server is hosted, head over to http://127.0.0.1:8000/ for the App.
Cheers and Happy Coding :)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.