An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          


[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![git](https://badgen.net/badge/icon/git?icon=git&label)](https://git-scm.com) [![Visual Studio](https://badgen.net/badge/icon/visualstudio?icon=visualstudio&label)](https://visualstudio.microsoft.com) [![Docker](https://badgen.net/badge/icon/docker?icon=docker&label)](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
```