https://github.com/yeazin/Zooming-cls
This project is clone version of Google Classroom.Feel Free to contribute here.
https://github.com/yeazin/Zooming-cls
bangladesh django django-projects google google-classroom google-classroom-clone google-meet online-classes online-classroom online-meeting python-django yeasin yeazin zencode zencode-bd zoom-meeting zooming zooming-cls
Last synced: 7 days ago
JSON representation
This project is clone version of Google Classroom.Feel Free to contribute here.
- Host: GitHub
- URL: https://github.com/yeazin/Zooming-cls
- Owner: yeazin
- License: apache-2.0
- Created: 2021-07-11T15:34:46.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-12T09:51:55.000Z (over 4 years ago)
- Last Synced: 2024-07-30T18:52:32.542Z (almost 2 years ago)
- Topics: bangladesh, django, django-projects, google, google-classroom, google-classroom-clone, google-meet, online-classes, online-classroom, online-meeting, python-django, yeasin, yeazin, zencode, zencode-bd, zoom-meeting, zooming, zooming-cls
- Language: Python
- Homepage:
- Size: 2.51 MB
- Stars: 34
- Watchers: 1
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bangladeshi-foss - Zooming Classroom - Online classroom platform built with Django for Bangladeshi students. (Web Applications / 🚀 How to contribute)
README
[](https://www.python.org/)
[](https://git-scm.com) [](https://visualstudio.microsoft.com) [](https://https://docker.com/)
Zooming cls ( Google Classroom Clone )
Clone the repository using the following command
```bash
git clone github.com/yeazin/Zooming-cls.git
# After cloning, move into the directory having the project files using the change directory command
cd Zooming-cls
```
Create a virtual environment where all the required python packages will be installed
```bash
# Use this on Windows
python -m venv env
# Use this on Linux and Mac
python3 -m venv env
```
Activate the virtual environment
```bash
# Windows
.\env\Scripts\activate
# Linux and Mac
source env/bin/activate
```
Install all the project Requirements
```bash
pip install -r requirements.txt
```
-Apply migrations and create your superuser (follow the prompts)
```bash
# apply migrations and create your database
python manage.py migrate
# Create a user with manage.py
python manage.py createsuperuser
```
Run the development server
```bash
# run django development server
python manage.py runserver
```