Website to view any youtube video in any desired language and also to manually record audio for a particular video and store it.
- Python 3.6
- Django
To get a local copy up and running follow these simple steps.
First clone the repository by running the following command in the terminal of your desired directory:
git clone https://github.com/csvinay/team-alpha.git
Enter into the project directory by running the following command:
cd team-alpha
Then setup the prerequisites to run the programs.
Option 2: Setup virtual environment.
-
install venv if not installed
python3 -m pip install --user virtualenv
-
create new virtual environment
python3 -m venv team-alpha
-
activate virtual environemt
source team-alpha/bin/activate
-
run the follwing command to download the dependencies
pip install -r requirements.txt
Run the django website using the below given command
python manage.py runserver
See the open issues for a full list of proposed features (and known issues).
- Setup the local copy of the project as mentioned above
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request