[GH-ISSUE #1019] Provide development envs of cloud space #447

Open
opened 2026-03-03 00:21:13 +03:00 by kerem · 7 comments
Owner

Originally created by @joaoguariglia on GitHub (Jun 22, 2021).
Original GitHub issue: https://github.com/BoostIO/BoostNote-App/issues/1019

Originally assigned to: @Rokt33r on GitHub.

Hello I'm not a developer I'm sysadmin and I'm trying to install your application on a Debian 10 as an AppWEB service, I did these steps but it still didn't go up, would there be any how to step by step? Considering a Debian from a clean installation:

curl -sL https://deb.nodesource.com/setup_current.x | sudo bash -
apt install nodejs npm git
git clone https://github.com/BoostIO/BoostNote.next
cd BoostNote.next/
npm install npm@latest -g
npm i
mv .env.default .env
npm run dev:cloud

Environment

Web

  • Boost Note.next version: boostnote.next@0.18.1
  • OS version and name: Debian 10
Originally created by @joaoguariglia on GitHub (Jun 22, 2021). Original GitHub issue: https://github.com/BoostIO/BoostNote-App/issues/1019 Originally assigned to: @Rokt33r on GitHub. Hello I'm not a developer I'm sysadmin and I'm trying to install your application on a Debian 10 as an AppWEB service, I did these steps but it still didn't go up, would there be any how to step by step? Considering a Debian from a clean installation: curl -sL https://deb.nodesource.com/setup_current.x | sudo bash - apt install nodejs npm git git clone https://github.com/BoostIO/BoostNote.next cd BoostNote.next/ npm install npm@latest -g npm i mv .env.default .env npm run dev:cloud # Environment ## Web - Boost Note.next version: boostnote.next@0.18.1 - OS version and name: Debian 10
Author
Owner

@Komediruzecki commented on GitHub (Jun 22, 2021):

Hi, joaoguariglia,

Can you specify what exactly are you trying to do with the service? Boost note next web application as well as cloud workspaces is comprised of backend services in addition to frontend, so it needs those to function completely.

In that case, you cannot really self host the backend services or run the complete cloud workspace app from this repository.

That part is also not open source as far as I know so it would be against the license to do it.

@Rokt33r am I making any sense, can you inspect this also?

<!-- gh-comment-id:866342146 --> @Komediruzecki commented on GitHub (Jun 22, 2021): Hi, joaoguariglia, Can you specify what exactly are you trying to do with the service? Boost note next web application as well as cloud workspaces is comprised of backend services in addition to frontend, so it needs those to function completely. In that case, you cannot really self host the backend services or run the complete cloud workspace app from this repository. That part is also not open source as far as I know so it would be against the license to do it. @Rokt33r am I making any sense, can you inspect this also?
Author
Owner

@Rokt33r commented on GitHub (Aug 19, 2021):

Currently, npm run dev:cloud is not available for external contributors. We will resolve this issue very soon. Please wait a little bit more.

<!-- gh-comment-id:901800588 --> @Rokt33r commented on GitHub (Aug 19, 2021): Currently, `npm run dev:cloud` is not available for external contributors. We will resolve this issue very soon. Please wait a little bit more.
Author
Owner

@asopromadze commented on GitHub (Dec 28, 2021):

Hello @Rokt33r , any news? i'v done as it is in description
image
I have folowing error
image
It cant find this env
image

<!-- gh-comment-id:1002218732 --> @asopromadze commented on GitHub (Dec 28, 2021): Hello @Rokt33r , any news? i'v done as it is in description ![image](https://user-images.githubusercontent.com/61462002/147593468-27815578-0fa3-46f9-9b87-dd9e72949d48.png) I have folowing error ![image](https://user-images.githubusercontent.com/61462002/147593516-4e48d853-6e02-470a-b550-f0f8bdbf7d01.png) It cant find this env ![image](https://user-images.githubusercontent.com/61462002/147593548-32d929b6-daa3-49f9-b9f5-ac7a461ff83a.png)
Author
Owner

@Komediruzecki commented on GitHub (Dec 28, 2021):

Hello,

Did you copy all the vars from here as well?
https://github.com/BoostIO/BoostNote-App/blob/master/.env.default

You should rename this default file to .env and try like that.

<!-- gh-comment-id:1002252943 --> @Komediruzecki commented on GitHub (Dec 28, 2021): Hello, Did you copy all the vars from here as well? https://github.com/BoostIO/BoostNote-App/blob/master/.env.default You should rename this default file to .env and try like that.
Author
Owner

@asopromadze commented on GitHub (Dec 29, 2021):

Thanks but i have loading screen
image
seems variable initialized always false in src/cloud/components/Router.tsx
image
any solution ?

<!-- gh-comment-id:1002434360 --> @asopromadze commented on GitHub (Dec 29, 2021): Thanks but i have loading screen ![image](https://user-images.githubusercontent.com/61462002/147637551-d2b9e4d5-4d84-4c36-ba93-243f42180303.png) seems variable initialized always false in src/cloud/components/Router.tsx ![image](https://user-images.githubusercontent.com/61462002/147637579-40ddaa0b-8eb4-441c-95b8-2d265f03c3aa.png) any solution ?
Author
Owner

@Komediruzecki commented on GitHub (Dec 29, 2021):

Is that for cloud/webapp?

The electron desktop app seems to complain about not implemented mock:
image

For web app, I get the same not initialized as you.

After changing the base URL to: http://localhost:3004/dev

And this mockHandler route:
image

I am able to get to the space:
image

Can you try it?

For desktop app please additionally add one more env entry (replace the existing if it exists): BOOST_HUB_BASE_URL=http://localhost:3004

To get it working:
image

<!-- gh-comment-id:1002548567 --> @Komediruzecki commented on GitHub (Dec 29, 2021): Is that for cloud/webapp? The electron desktop app seems to complain about not implemented mock: ![image](https://user-images.githubusercontent.com/18196945/147655183-5607f73f-cbbe-4b31-b1e0-afa55c831815.png) For web app, I get the same not initialized as you. After changing the base URL to: `http://localhost:3004/dev` And this mockHandler route: ![image](https://user-images.githubusercontent.com/18196945/147657583-d046f680-28d4-42d2-8f38-330cc781e02a.png) I am able to get to the space: ![image](https://user-images.githubusercontent.com/18196945/147657624-42b70370-a2d1-47a6-947a-25a7b7b193f2.png) Can you try it? For desktop app please additionally add one more env entry (replace the existing if it exists): `BOOST_HUB_BASE_URL=http://localhost:3004` To get it working: ![image](https://user-images.githubusercontent.com/18196945/147657725-cf41cdce-759b-4235-9d5f-d406def4c7ab.png)
Author
Owner

@asopromadze commented on GitHub (Dec 29, 2021):

Thanks I m in 💥
image

<!-- gh-comment-id:1002570788 --> @asopromadze commented on GitHub (Dec 29, 2021): Thanks I m in :collision: ![image](https://user-images.githubusercontent.com/61462002/147661944-54aacf81-d5c7-40b4-93a9-90688cdad983.png)
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#447
No description provided.