Audio Editing tool made for Geet-Hub
Visit here : SunGeet
This is a complete guide on how you can setup this project locally on your device
Make sure you have installed all of the following prerequisites on your development machine:
-
Git - Download & Install Git. OSX and Linux machines typically have this already installed.
-
Node.js - Download & Install Node.js and the npm package manager. If you encounter any problems, you can also use this GitHub Gist to install Node.js.
These are a set of instructions to follow for you to setup the project locally and run it.
Fork the repository to you GitHub
While still in your repository, click on the code drop down menu. Now you can either download the zip file and extract it on your local system or copy the https url and use the command git clone to clone it to a local directory/folder.
git clone https://github.com/<YOUR USERNAME>/geet-hub-editor.git
Since the clone was downloaded into a subdirectory of your working directory, you can navigate to it using: cd NAME_OF_REPOSITORY.
For example,
cd geet-hub-editor
Before running npm you should have node Js installed on you system node install instructions
npm install
npm start
Rather than making changes to the project's "main" branch, it's a good practice to instead create your own branch. This creates an environment for your work that is isolated from the master branch.
Use git checkout -b BRANCH_NAME to create a new branch and then immediately switch to it. The name of the branch should briefly describe what you are working on, and should not contain any spaces.
For example,
git checkout -b branch_name
Use git branch to show your local branches. You should see your new branch as well as "main", and your new branch should have an asterisk next to it to indicate that it's "checked out" (meaning that you're working in it).
git branch
Use a text editor or IDE to make the changes you planned to the files in your local repository. Because you checked out a branch in the previous step, any edits you make will only affect that branch.
After you make a set of changes, use git add -A
or git add .
(to stage all your changes) or git add <fileName>
(to stage the change made in a specific file) and git commit -m "DESCRIPTION OF CHANGES"
to commit them.
For example, commit -m "Instructions on setting up project locally"
for one of my commits.
git add . (To stages all your changes)
OR
git add <fileName> (To stage the changes made in a specific file)
git commit -m"<Description of changes>"
If you are making multiple sets of changes, it's a good practice to make a commit after each set.
When you are done making all of your changes, upload these changes to your fork using git push origin BRANCH_NAME. This "pushes" your changes to the "BRANCH_NAME" branch of the "origin" (which is your fork on GitHub).
For example: git push origin main
git push origin <BRANCH_NAME>
Return to your fork on GitHub, and refresh the page. You may see a highlighted area that displays your recently pushed branch:
Click the green Compare & pull request button to begin the pull request.
Before submitting the pull request, you first need to describe the changes you made .
If everything looks good, click the green Create pull request button!