Skip to content

This project is clone version of Google Classroom.Feel Free to contribute here.

License

Notifications You must be signed in to change notification settings

yeazin/Zooming-cls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c0ea63f Β· Oct 12, 2021

History

64 Commits
Oct 12, 2021
Oct 12, 2021
Oct 12, 2021
Oct 12, 2021
Oct 12, 2021
Oct 12, 2021
Jul 23, 2021
Jul 12, 2021
Jul 11, 2021
Oct 12, 2021
Jul 12, 2021
Oct 12, 2021
Jul 12, 2021
Oct 12, 2021

Repository files navigation

made-with-python git Visual Studio Docker

Zooming cls ( Google Classroom Clone )



Clone the repository using the following command
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

# Use this on Windows
python -m venv env
# Use this on Linux and Mac
python3 -m venv env

Activate the virtual environment

# Windows
.\env\Scripts\activate
# Linux and Mac
source env/bin/activate

Install all the project Requirements

pip install -r requirements.txt

-Apply migrations and create your superuser (follow the prompts)

# apply migrations and create your database
python manage.py migrate

# Create a user with manage.py
python manage.py createsuperuser

Run the development server

# run django development server
python manage.py runserver