Create a Merge Request
With the initial setup complete, commit and push the changes to the remote repository, and create a merge request (MR).
NOTE: This MR is important and recommended because it triggers the pipeline responsible for uploading the microapp to the widget/microapp store. Once uploaded, the microapp becomes available on the platform and can be added to the portal.
Steps:
-
Create and switch to a new branch
git checkout -b setup -
Stage and commit the changes
-
Add all changes:
git add -A -
Commit them with a clear message:
git commit -m "feat: initial setup"IMPORTANT: We use
semantic-releaseto automate project versioning. Commit messages must follow a specific format. To learn more, click here.
-
-
Push to the remote repository
git push --set-upstream origin setup -
Follow the terminal link to create the MR in GitLab.
- Fill out the form:
- Title:
feat: initial setup for <MicroAppName> - Description: (Add any relevant details)
- Assignees: Yourself
- Reviewers Your developer support contact
- Merge Options: Check
Squash commits when merge request is accepted
- Title:
- Click "Create merge request".
- Fill out the form:
Check out this tutorial for more information on creating Merge Requests
- Notify your developer support contact (on Slack) with the MR link for review.
Next Steps
From this point, you can build your Microapp, you can follow this tutorial for some additional guidance, or explore the rest of this website.