feat: Added React Demo webApp and deployment workflow#73
Merged
Conversation
jattasNI
requested changes
Mar 17, 2026
Collaborator
jattasNI
left a comment
There was a problem hiding this comment.
We are getting close. I scanned all the comments and I think the only remaining open ones are:
- @rockyRaccoon13 Blazor pipeline is failing
- @amur-bashirov font issues
- not sure who: README suggestions
…e Reac app called ApiKeyAuthApp
As requested in PR. May need to revert changes for later Blazor projects
085db5d to
c657504
Compare
jattasNI
approved these changes
Mar 24, 2026
Collaborator
jattasNI
left a comment
There was a problem hiding this comment.
I pushed a few changes to the PR and it's now ready to merge! I'll work with the repo owners tomorrow to complete it.
Here were the main changes. Many of them should apply to other apps too.
- Renamed "Web Applications" to "Web Apps"
- Updated styles to use more Nimble tokens
- Some minor README edits
TJ-G
approved these changes
Mar 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Justification
Added a React demo web application using Vite to demonstrate how a customer might create a webApp and deploy it to SystemLink. The webApp demos how to call SystemLink APIs both in development (locally) and in production (within a SystemLink website).
The github actions webApp workflow automates building, linting, and deployment to the SystemLink website. The workflow also outputs a .nipkg artifact of the webApp to github. See
/.github/workflows/webapp_deploy.ymlImplementation
Webapp Design
examples/web_apps/Framework_Examples/React/ApiKeyAuthAppRunning in Development (locally) vs Production (hosted in SystemLink website)
.env.developmentand.env.production) files allow variable domain for fetches (dev will fetch from the local proxy server, prod will fetch from the hosting website)ApiServiceProxy -- Required to run web app locally
token authentication when the web app is hosted in the SystemLink website
ApiServiceProxy/README.mdProduction -- Running inside SystemLink Website
ApiKeyAuthApp/README.md./deployDev.shWorkflow -- Building, Linting, Deployment to SystemLink website
package.json(npm ci, npm lint, npm build).SystemLink CLI (SL CLI) integration in Workflow
SL_API_URLSL_API_KEYSL_WEBSITE_URLSL_WORKSPACETesting
Local env
Within SystemLink website
Workflow
Checklist