
Removing octant reference for now, it will need to be later embedded into the ui Working on this will require these commands to be run in the web directory: npm install npm install --save-dev electron behind a proxy npm install may have issues, this might work: npx cross-env ELECTRON_GET_USE_PROXY=true GLOBAL_AGENT_HTTPS_PROXY= http://<proxy>:<port> npm install -D electron@latest Change-Id: I5bd054a767fe8ab7b0461a16eced1921c4de11f6
18 lines
414 B
JSON
Executable File
18 lines
414 B
JSON
Executable File
{
|
|
"name": "electron-poc",
|
|
"version": "0.0.1",
|
|
"main": "js/main.js",
|
|
"scripts": {
|
|
"start": "electron ."
|
|
},
|
|
"description": "An attempt to create a small electron app for eventual usage with airship-ui",
|
|
"author": "Andrew J. Schiefelbein, andrew.schiefelbein@att.com",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"electron": "^8.2.2"
|
|
},
|
|
"dependencies": {
|
|
"xmlhttprequest": "^1.8.0"
|
|
}
|
|
}
|