Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hijal/youtube-search


https://github.com/hijal/youtube-search

css3 django html5 javascript python3

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Django Youtube Search Demo

![Screenshot](screenshot/screenshot.png)
## About

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.

## Prerequisites

Install virtual environment:

```bash
$ virtualenv .
```

Activate virtual environment:
On Windows:
```bash
$ .\Scripts\activate
```

Install dependencies:
```bash
$ pip install -r requirements.txt
```

## How to run

### Default

You can run the application from the command line with manage.py.
Go to the root folder of the application.

Run migrations:
```bash
$ python manage.py migrate
```

Initialize data:
```bash
$ python manage.py loaddata users posts comments
```

Run server on port 8000:
```bash
$ python manage.py runserver 8000
```