Launch the Drupal Starshot prototype on Drupal Forge. If you launch with a cloud development environment, you can use it to contribute to Starshot.
-
Fork the Starshot prototype repository.
-
Open DevPanel VS Code and run the following commands:
cd /var/www/html/starshot-prototype git remote add <github_username> https://<github_username>:<github_personal_token>@github.com/<github_username>/<github_repo>
It is best practice to generate a GitHub personal access token rather than to use your GitHub password for
<github_personal_token>
. If you use a classic access token, it needs therepo
permission. If you use a fine-grained access token, it needs read and write access to repository contents. -
Create a branch for your issue:
git checkout -b <issue-branch>
-
When you have committed your work, push the branch to your fork:
git push -u <github_username> HEAD
-
Create a GitHub pull request from your fork back to the official starshot-prototype repository.