- Installation
- Run
- DevTools
- Useful env variables for dev
- Migrations
- Packaging
- Development tools
- Releases
- Select documentation topics
- node >=
18.x - yarn >=
1.19.x
$ git clone https://github.com/getstation/desktop-app.git
$ cd desktop-app
$ yarnNo additional requirements.
Install node-gyp dependencies
$ npm --add-python-to-path install --global --production windows-build-tools$ sudo apt install graphicsmagick icnsutils libxtst-dev libx11-dev libxrender-dev libxkbfile-dev libgconf-2-4CentOS 9 is required.
$ sudo yum install clang dbus-devel gtk3-devel libnotify-devel xorg-x11-server-utils libcap-devel \
cups-devel libXtst-devel alsa-lib-devel libXrandr-devel nss-develSee dotenv for further configuration.
yarn run devIf for any reason you have some error with binding module you could run npm run rebuild-all-native to check if you still have the problem
- MacOS: Cmd Alt I or F12
- Linux: Ctrl Shift I or F12
- Windows: Ctrl Shift I or F12
See electron-debug for more information.
- React DevTools is available in Chrome DevTools
- Apollo Client DevTools is available in Chrome DevTools
- Redux DevTools see below
In order to see redux transactions and state,
install Redux DevTools
(or the browser extension)
and click on Open Remote DevTools. Make sure Use (custom) local server on localhost:8000 is activated in the settings.
To inspect the main process, connect Chrome by visiting chrome://inspect and selecting to inspect the launched Electron app.
STATION_NO_WEBVIEWSif exists, webviews are not loadedSTATION_REDUX_LOGGERif exists, will enable redux-logger in rendererSTATION_AUTOUPDATER_MOCK_SCENARIOset the scenario for the mock ofAutoUpdatermodule:available(default), mock an update is available and downloadednot-availablemock an update is not available
OVERRIDE_USER_DATA_PATHoverrideuserDatapath (example:OVERRIDE_USER_DATA_PATH="Station Canary" yarn run dev)STATION_CHECK_INACTIVE_TAB_EVERY_MSoverride the interval period between each check for inactive tabsSTATION_WAIT_MS_BEFORE_KILL_TABoverride the time to wait before considering a tab is inactive and killing itSTATION_QUICK_TRANSITIONSall transitions are quick (used to test changing colors)STATION_REACT_PERFadd the react-addons-perf for react perf debuggingSTATION_NO_CHECK_FOR_UPDATEif exists, the app will not check for updateDEBUG=service:*Will print debug info of Service framework on all processesSTATION_SHOW_REQUIRE_TIMEif exists, the app will display the execution time of requiring modules upon quitMain: timers shown upon quit(disabled for now)Renderer: to show timers, execute this in a console:(disabled for now)require('@getstation/time-require').default()
STATION_DISABLE_ECXif exists,electron-chrome-extensionwill not be loaded
Databases migrations are using umzug and umzug-cli.
To test migrations manually:
// Apply migrations
$ yarn run database migrations up
// Revert last applied migration
$ yarn run database migrations downInstall TablePlus and create a new SQLite connection with the database file located at ~/Library/Application\ Support/Station\ Dev/db/station.db
To package apps for the local platform:
$ yarn run buildThe application will be automatically signed by the CI on the release branch
Here is a list of tools used during the development process. Consider adding the corresponding plugins to your IDE.
WebStorm and VSCode should be correctly configured by default.
This repository should be used as a proper monorepo. Packages that should be impacted:
- appstore (already in this repo but not handled by any monorepo tool yet)
- @getstation/sdk
- @getstation/theme
- Draft a new release tagged with the desired version
- Apply your changes on
releasebranch - On
releasebranch, bump the version withyarn versionto the corresponding version number - Let the CI build artifacts for each platform
- Publish the draft
Note: you can remove artifacts and push changes over the same draft