Toolkit is a set of tools that help my day job.
Clone the repository with Git:
git clone git@github.com:suchanlee/toolkit.gitAnd then install the dependencies:
cd toolkit
yarnBoth processes have to be started simultaneously in different console tabs:
npm run start-renderer-dev
npm run start-main-devThis will start the application with hot-reload so you can instantly start developing your application.
You can also run do the following to start both in a single process:
npm run start-devWe use Electron builder to build and package the application. By default you can run the following to package for your current platform:
npm run distThis will create a installer for your platform in the releases folder.
You can make builds for specific platforms (or multiple platforms) by using the options found here. E.g. building for all platforms (Windows, Mac, Linux):
npm run dist -- -mwl| Description | Keyboard |
|---|---|
| Go to "TODOS" Tab | Cmd + 1 |
| Go to "READINGS" Tab | Cmd + 2 |
| Go to "NOTES" Tab | Cmd + 3 |
| Zoom in / Out | Cmd + +/- |
| Description | Keyboard |
|---|---|
| Navigate between todos | Up/Down |
| Rotate the todo state of the current item (todo -> in progress -> finished) | Enter |
| Description | Keyboard |
|---|---|
| Open a page | Cmd + Enter |
| Description | Keyboard |
|---|---|
| Create a new note | Cmd + N |
