Before you begin, ensure you have met the following requirements:
- Node.js: Download & Install Node.js (make sure it's node version 18)
-
Clone this repository:
git clone https://github.com/The-Donovans-Venom-501c3/music-games.git
-
Navigate to the project directory:
cd music-games
-
Pull the latest changes from the develop branch.
git checkout develop git pull origin develop
-
Install the required dependencies:
npm install
To start the development server and run the app locally, use the following command:
npm run dev
The app will be accessible at http://localhost:3000 in your web browser.
-
Create a new branch for your changes:
git checkout -b your-branch-name
Branch name should always be the feature you've implemented. Example: user-authentication
-
Make your changes, commit them, and push them to your branch:
git add . git commit -m "Add your commit message here" git push origin your-branch-name
-
Create a Pull Request (PR) from your branch to the develop branch. Provide a descriptive title and a summary of all of your changes.
We will review your PR as soon as possible. Thank you for contributing!