-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Modular Cloud desktop app | ||
|
||
## How to run the project | ||
|
||
1. Build the nextjs app : | ||
|
||
```bash | ||
# go to the root | ||
cd ../.. | ||
|
||
# build the nextjs app | ||
npx turbo run build --filter web | ||
``` | ||
|
||
You may get an error when building the app, | ||
for that you can go to the web folder and build it manuaally : | ||
|
||
```bash | ||
cd apps/web | ||
npm run prefetch:networks | ||
npm run build | ||
``` | ||
|
||
2. Export the built files from the next app : | ||
|
||
```bash | ||
cd apps/web | ||
npm run prepare-electron | ||
``` | ||
|
||
3. Run the desktop project : | ||
|
||
```bash | ||
npx electron index.js | ||
``` |
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
INTERNAL_INTEGRATION_API_URL="***" | ||
NEXT_PUBLIC_SVM_METRICS="https://fr64dzklc3.execute-api.us-west-2.amazonaws.com/prod" | ||
NEXT_PUBLIC_ADOBE_EMBED_API_KEY="a165f09589fc4cd29a574b37d1212a96" | ||
NEXT_PUBLIC_TARGET='electron' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters