Lecture Transcription tool for enhanced learning
-
First you have to download this codebase. For that give the following command, by going to what ever directory(folder) which you like to download this code base.
git clone link -
run
pip install -r requirements.txtto install all the dependencies -
run project without errors
uvicorn main:app --host 0.0.0.0 --port 80 -
After downloading the code base, create a own git branch to work. For that give the bellow command.
git branch <your name> -
After creating the branch to go in to that branch give the following command.
git checkout <your name> -
Then you can work in your branch and can do the changes you require.
-
After doing the changes first add the changes which you did in to your local repository. For that give the command
git add . -
After adding the changes you have to describe briefly about what is the change which you made. For that give the following command
git commit -m "<commit message line>" -
Then push the code in to your remote branch by giving the following command
git push -u origin <branch name which you created> -
After pushing the code in to global repository, now you can go to the github.com website and make a pull request. For that;
- when creating a pull request make the pull request from your branch to 'dev' branch. Not to 'main' branch.
Ex: hansaka => dev
- when creating a pull request make the pull request from your branch to 'dev' branch. Not to 'main' branch.
-
To get an updated codebase from the dev branch
git checkout <your branch name>
git fetch origin
git merge origin/dev