ClassDeck aims to provide a virtual classroom that breaks the synchronous hurdles of location, place, student limits and cater the knowledge to the learning crowd anytime and anywhere. It is an all in one platform which makes the entire cycle of learning seamless for both educators and students. It also has a whole range of useful features that help to make the whole learning process remote and through virtual platforms.
- Generate Virtual Classrooms Anytime
- Educators can create assignments and quizes
- Students can view and submit Assignments
- Keep Track of Student's progress
- Enable Collaboration among students on specific topics
- Tools and Utilities for ease of learning
- Whiteboard for uploading useful content and materials
- Events Calender to keep track of schedule
Step 1: Downloading and Installing the Code Editor
You can download and install any one of the following IDE.
- Visual Studio Code (Preferred)
- Sublime Text 3
- Atom
Step 2: Installing Python
Download Python Latest Version
- Make sure to check 'Add Python to Path' in the setup window of the Installer.
Verify the installation from the Terminal using the following command,
python --versionStep 5: Cloning Repository using Git
git clone https://github.com/'<your-github-username>'/classDeck.gitStep 6: Change directory to classDeck
cd classDeckStep 7: Add reference to the original repository
git remote add upstream https://github.com/coding-geek21/classDeck.gitStep 8: Creating Virtual Environment
Install virtualenv
pip install virtualenvCreating Virtual Environment named env
virtualenv envTo Activate env
source env/Scripts/activate
or
./env/Scripts/activateTo deactivate env
deactivateStep 9: Installing Requirements
Note: Before installing requirements, Make sure the virtual environment is activated.
cd classDeck
pip install -r requirements.txtStep 10: Making database migrations
Note: Before making database migrations, make sure you've successfully created database.
python manage.py makemigrationspython manage.py migrateStep 11: Creating superuser to access Admin Panel
python manage.py createsuperuserStep 12: Create env files from env templates
create a .env file in the folder where settings.py resides and copy paste the contents of .env_template over there manually or else you can achieve the same using the follow commands in any bash like shell.
cd classDeck
cp .env_template .env
cd ..Step 13: Running the Project in local server
Note: Before running the project in local server, Make sure you activate the Virtual Environment.
python manage.py runserverServer will be up and running in local host on PORT 8000