Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.89 KB

README.rst

File metadata and controls

42 lines (28 loc) · 1.89 KB

Vidliv-Live Video Streaming and Broadcasting

Vidliv is a minor project to make the broadcasting a reality by integrating following.

Quickstart

Clone the repo or download the compressed file

git clone https://gitlab.com/wrcteam/vidliv.git

Download Postgresql Create databse,user with password,grant all privileges.

For Ubuntu how to use postgresql

Also install python, pip, virtualenv, virtualwrapper etc and create a virtual environment

Activate the virtual environment source {env_folder}/bin/activate

goto the project directory and just copy .env.example and rename copied file to .env

For linux cd vidliv and rename in same folder mv .env.example .env

Replace with your details and secret key can be generated by running following one line code in console or online Django Secret Key Generator

python -c 'import random; import string; print("".join([random.SystemRandom().choice("{}{}{}".format(string.ascii_letters, string.digits, string.punctuation)) for i in range(50)]))'

Now install the requirements

pip install -r requirements/local.txt

Migrate the database files
  • python manage.py migrate
And open in local development using ssl server(for https)
  • python manage.py runsslserver
OR simply open in local development server (for http)
  • python manage.py runserver