-
Notifications
You must be signed in to change notification settings - Fork 239
Start Parameters
Benny Neugebauer edited this page Jan 27, 2017
·
29 revisions
Wire's wrapper can be started with different arguments to influence the view & behaviour of the wrapper. Here is a list of all known parameters:
Change wrapped webapp
--env=http://localhost:8888/
Enable Chrome Developer Tools on Startup
--devtools

Start the app minimized
--startup
Start production wrapper with devtools
# Navigate to the Electron binary directory
cd /Applications/(Wire.app | Wire.localized/Wire.app)/Contents/MacOS
# Start the Electron binary
./Electron --devtoolsAlternative:
open /Applications/(Wire.app | Wire.localized/Wire.app) --args --devtoolsOn Windows:
c:
cd \Users\%username%\AppData\Local\wire\
FOR /F "delims=" %%i IN ('dir /b /ad-h /t:c /od') DO SET a=%%i
cd %a%
Wire.exe --devtools
pause