This is a Mock Plugin Service to host the Published Plugins developed by Web Extensibility team as part of Horizon extensibility PoCs.
- Create the ssl folder,
mkdir ssl. cd ssland run the following commands:openssl genrsa -out key.pemopenssl req -new -key key.pem -out csr.pemopenssl x509 -req -days 365 -in csr.pem -signkey key.pem -out cert.pem(We may enter the Country, Organization, Email and skip all other input parameters)
- Open
chrome://flags - Enable this flag:
Allow invalid certificates for resources loaded from localhost. - Restart Chrome
- For installing the dependencies, run
npm install - To build and start the application, run
npm start - To watch the changes while developing, run
npm run watch