-
Notifications
You must be signed in to change notification settings - Fork 2
Developer documentation
- Check out this repository
- Copy the Pipeline
- Get a build of the DAISY Pipeline, with the web service enabled
- Copy the DAISY Pipeline build into
src/resourcesasdaisy-pipelineso you havesrc/resources/daisy-pipeline/bin,src/resources/daisy-pipeline/cli, etc.
- Run
yarnto install dependencies - Run
yarn devto run the app in development mode
- Configure your machine for code signing and notarizing
- Get credentials (e.g. signing certificate)
- Create a file called
.envin the root with this information:
APPLE_ID=*******
APPLE_ID_PASS=*********
APPLE_ID_TEAM=********
- Build the distributable
yarn dist --mac- This creates a
dmgfile, signs the code, and notarizes the app.
TBD
This project was created from this electron template.
It starts the Pipeline engine upon startup, and interacts with it via the Pipeline's web service.
There is one main window, consisting of a tabbed job management interface, and one settings window.
The Pipeline engine is instructed to use an APPDATA directory for its data directory, and then the job results are copied by the Pipeline UI to a directory that the user sets in Settings.
-
Users should be able to drag and drop files to filter suggested scripts.
-
Users should have a fast way to edit and re-run a recent job.
-
After a user starts filling out a new job form, if they close the tab, they should get a warning.
-
If a user has entered an invalid form value, including pointing to the wrong file type, they should get a validation warning.
-
Some scripts require support for inputs and options with multiple values (sorted and unsorted).
- Introduce Redux
- Web service calls are currently part of the renderer code (see
MainView) but could move to the main process instead
- Web service calls are currently part of the renderer code (see
- Basic testing framework via selenium