Boost Note is a document driven project management tool that maximizes remote DevOps team velocity.
Go to file
2022-09-06 03:18:56 +09:00
.github/workflows Create node.js.yml 2021-03-09 10:42:48 +09:00
.storybook Fix storybook 2021-11-24 11:13:17 +09:00
android Implement webview error handling for android(inactive) 2021-07-21 13:08:46 +09:00
build-utils Skip notarizing when prepacking 2021-11-19 11:45:05 +09:00
cloud-static Fix registration UI 2022-02-07 08:48:31 +09:00
docs Discard deprecated legacy boostnot url 2021-07-13 12:18:04 +09:00
ios Mobile build version 5 -> 6 2021-07-26 10:43:00 +09:00
macOs Notarize after code signing 2020-12-21 17:19:27 +09:00
mobile-static Improve sign in page 2021-07-13 12:17:59 +09:00
resources Move logo.eps to resources 2020-02-11 17:34:05 +09:00
scripts Pass env var for main processor script 2021-11-19 11:45:05 +09:00
src Fix missing icon 2022-09-06 03:18:56 +09:00
static Discard deprecated images 2021-11-19 11:45:05 +09:00
test Discard cson stuff 2021-08-06 14:42:54 +09:00
typings sidebar nav tmp 2021-04-21 17:25:10 +09:00
.babelrc Initiate BoostNote storybook (#702) 2020-12-07 06:50:34 +09:00
.env.default Clean up deploy (#1272) 2021-10-18 20:32:24 +09:00
.eslintignore Add icon and favicon 2019-12-19 09:09:56 +09:00
.eslintrc Discard useRefCallback 2021-08-06 14:42:54 +09:00
.gitignore Clean up deploy (#1272) 2021-10-18 20:32:24 +09:00
.prettierignore Format all src 2020-01-19 11:30:40 -05:00
.prettierrc Apply jsxSingleQuote true 2019-01-29 17:21:19 +09:00
cloud.html Apply default background color before loading script 2021-11-19 11:45:05 +09:00
CODE_OF_CONDUCT.md Clean documents 2018-07-17 17:34:34 +09:00
CONTRIBUTING.md Add a development workflow section 2021-10-18 20:53:25 +09:00
index.html Apply default background color before loading script 2021-11-19 11:45:05 +09:00
ISSUE_TEMPLATE.md Update github repository url 2021-08-27 15:34:14 +09:00
jest.json Fix test 2021-05-04 16:25:42 +09:00
LICENSE.md Fix copiright 2020-07-18 14:36:44 +09:00
mobile.html Fix notch layout issue 2021-07-21 13:16:04 +09:00
package-lock.json Bump node-fetch from 2.6.5 to 2.6.7 2022-05-02 17:20:00 +09:00
package.json Bump mermaid from 8.9.0 to 8.13.8 2022-05-02 17:19:43 +09:00
readme.md Update readme 2022-02-16 13:35:54 +09:00
tsconfig-webpack.json Fix building script for cloud workspace app 2021-02-11 17:00:02 +09:00
tsconfig.json remove unnecessary tsconfig change 2022-02-02 10:49:49 +09:00
vercel.json Update vercel config 2021-02-12 19:53:41 +09:00
webpack.cloud.config.ts add env var 2022-07-20 12:36:20 +09:00
webpack.config.ts Fix webpack config to deploy electron app 2021-11-19 11:45:05 +09:00
webpack.mobile.config.ts Clean up deploy (#1272) 2021-10-18 20:32:24 +09:00

Boost Note is a document driven project management tool that maximizes remote DevOps team velocity.

https://boostnote.io/

uiimage

👷 Core Team (maintainers)

📦 Download App

🖥 Desktop

📱 Mobile

💥 Have some troubles?

If you don't know how to use the app, please create a discussion on our Q&A discussion page.

If you find a bug, please create an issue to our GitHub issue tracker.

If it is urgent or private, please join our Slack channel and send a direct message to @rokt33r.

🤲 Wanna contribute?

If you're interested in our project, you can participate in many different ways.

  • Sharing your idea
  • Helping community
  • Resolving existing issues

Read our contributing guide, to learn about our development process, how to propose bugfixes and improvements.

Sharing your idea

To improve the app, we need your idea! It could be a new feature or an improvement for existing features. If you have any, please create a discussion in Feature Requests category.

Helping community

There are many ways to help our community. You can share how you're using our app by writing an article. You can write it in General discussion page, external developer community (Dev.to or Reddit) and your blog if you have one.

Also, you can help other users by answering their questions in here.

Resolving existing issues

We have left the "help wanted" label to some issues which external contributors could try to resolve. Some of them might have a small bounty so you can get a cup of coffee from it after hacking. If you find any interesting issues but their specs are not clear or you don't know how to fix them, please leave a comment on the issues. Then, we will give you more instructions.

Development

Currently, we provide the frontend source code only so you cannot host our backend server by yourself. But you can participate in development via mock backend mode. Although it still doesn't cover every API yet, you can access the basic folder and document management.

How to run the app

Create .env file.

NODE_ENV=development
MOCK_BACKEND=true

Run webpack processors. You have to run them in separate terminals.

npm run dev:cloud
# You can skip next two scripts if you don't need to run electron app.
npm run dev:electron
npm run dev:webpack

How to extend mock backend

When the mode is enabled, all API calls will be passed to src/cloud/api/mock/mockHandler.ts.

The source code is quite similar to a router interface. All you need to is method, pathname and a handler function. So, when you confront Not Found error while calling GET /api/something, you can simply add a mock route like below.

{
  method: 'get',
  pathname: 'api/something',
  handler: ({ search }): GetSomethingResponse => {
    return {
      ...something
    }
  },
}

Scripts

  • Development scipts
    • npm run dev:cloud : Run webpack for the cloud space
    • npm run dev:webpack : Run webpack for the desktop app main window renderer
    • npm run dev:electron : Run webpack for the desktop app main processor
    • npm run dev:mobile : Run webpack for the mobile app
    • npm run lint : Check lint errors
    • npm run format : Try to fix lint errors automatically
    • npm test : Run test script
    • npm run tsc : Check type errors
  • Build scripts
    • npm run build:electron-production : Build assets for the desktop app
    • npm run build:cloud-production : Build asssets for the cloud space
    • npm run build:mobile-production : Build assets for the mobile app
    • npm start : Run the desktop app with prebuilt assets
    • npm run meta : Prepare meta data for the desktop app building(Generate package.json for electron-build module)
    • npm run prepack : Create desktop app installers without signing
    • npm run release : Create desktop app installers for production and upload them to GitHub

⚖️ License

GPL-3.0 © 2016 - 2022 BoostIO