Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 719 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 719 Bytes

Extractpy

Extractpy is an open source project that get a video file and extract the audio from it

Setup Virtual Environment (venv)

Linux

These commands bellow are creating a folder .venv and activate the environment in the terminal.

python3 manage.py venv .venv
source .venv/bin/activate

Windows

py manage.py venv .venv
.venv/Scripts/activate

Installing Dependencies (requirements.txt)

pip install -r requirements.txt

Make migrations

We already have all sql instructions for structure our database, we just need apply it in our database before runserver

python3 manage.py migrate

Running server

python3 manage.py runserver