It was made using Python 3.7 + Django and database is SQLite. Bootstrap was used for styling.
Anyone can search and play video and also able to view that video in youtube.
Install virtual environment:
$ virtualenv .
Activate virtual environment: On Windows:
$ .\Scripts\activate
Install dependencies:
$ pip install -r requirements.txt
You can run the application from the command line with manage.py. Go to the root folder of the application.
Run migrations:
$ python manage.py migrate
Initialize data:
$ python manage.py loaddata users posts comments
Run server on port 8000:
$ python manage.py runserver 8000