A desktop client for the Symphony Collaboration Platform built using Electron
Go to file
Colin Eberhardt be655b3076 Enable the Chromium sandbox (#47)
According to recently added documentation, `sandbox: true` creates a sandbox 'compatible' renderer process, but doesn't actually enable the sandbox. The command line argument I've added is also required.

See discussion here: https://github.com/electron/electron/pull/9054#discussion_r108695652
2017-03-29 17:42:24 -07:00
build update dmg img 2017-02-13 16:31:42 -08:00
config Installer config (#19) 2017-02-22 15:34:16 -08:00
demo add notification grouping (#48) 2017-03-29 17:42:15 -07:00
installer Redo branch & pr for registry (#36) 2017-03-22 08:10:40 -07:00
js add notification grouping (#48) 2017-03-29 17:42:15 -07:00
tests fix test failures for newer ver of node (#42) 2017-03-24 16:18:09 -07:00
.babelrc add babel for testing with jest (#38) 2017-03-22 10:24:34 -07:00
.eslintignore update to badget count interface (#32) 2017-03-09 10:12:28 -08:00
.eslintrc add linting (#27) 2017-03-03 16:07:48 -08:00
.gitignore browserify preload scripts (#30) 2017-03-07 14:44:31 -08:00
LICENSE added LICENSE and NOTICE files 2016-12-03 00:59:30 +01:00
NOTICE added LICENSE and NOTICE files 2016-12-03 00:59:30 +01:00
package.json Enable the Chromium sandbox (#47) 2017-03-29 17:42:24 -07:00
README.md simplify local dev env (#35) 2017-03-21 11:50:26 -07:00

Symphony Software Foundation - Incubating

SymphonyElectron

Project Goals:

Our goal is to improve the performance and development agility of Symphony's desktop wrapper and build a path to support other wrappers by:

  1. Standardizing the JS to native interfaces
  2. Standardizing the app to app interfaces (current embedding API)
  3. Provide an open and free reference implementation that anyone can contribute to, modify, and make derivative works.

In order to achieve those goals Symphony is participating and working in close collaboration with the Foundation Desktop Wrapper Working Group

Run demo:

  • npm install
  • npm run demo

Build Instructions:

  • npm install
  • to run locally: npm run dev
  • to build mac dmg: npm run dist-mac
  • to build win squirrel installer exe (64 bit): npm run dist-win
  • to build win squirrel installer exe (32 bit): npm run dist-win-x86
  • to build win msi, use 'advanced installer' .aip file in installer/ dir

msi command line options:

  • to install for all users (admin required): msiexec.exe /i Symphony-x64.msi ALLUSERS=1
  • to install per user: msiexec.exe /i Symphony-x64.msi ALLUSERS=""
  • to change default pod url: msiexe.exe /i Symphony-x64.msi POD_URL=my.symphony.com

Start URL

  • To change the start url (i.e., pod url), edit config/Symphony.config and change 'url' variable. if no protocol provided, then https will be added.
  • The installer will include file config/Symphony.config next to executable. Changes in this file will effect all users.

Tests and Code Coverage

  • jest framework is used to run tests: http://facebook.github.io/jest/
  • to run tests and get code coverage report: npm test
  • code coverage reports are placed in dir: converage
  • tests are located in dir: tests

Misc notes

If desiring to run against server without proper cert use cmd line option: --ignore-certificate-errors