Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 1.04 KB

README.md

File metadata and controls

23 lines (17 loc) · 1.04 KB

Cognite Remote Configurator

Available Scripts

Before running commands follow Creating certificates to create https certificates

yarn start

Runs the app in the development mode. Open https://localhost:3000 to view it in the browser.

yarn build

Builds the app for production to the build folder.

Creating Certificates

Inorder to start the project you will need to create valid https certificates and make them trusted in certificate trust store

  1. Install Chocolatey
  2. Run choco install mkcert once it's installed. mkcert
  3. Create a .cert folder in this project root and navigate from CMD and run mkcert -install
  4. Now you should get prompt Root Certificate was successfully installed.
  5. within .cert folder execute mkcert localhost 127.0.0.1 ::1.
  6. Two files should be created as *.pem and *-key.pem. Rename them as cert.pem and key.pem respectively.
  7. Now the certificates should be correctly created.