@learnpack/learnpack 5.0.343 → 5.0.344
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commands/serve.js +775 -3
- package/lib/creatorDist/assets/{index-BhqDgBS9.js → index-DnthLsvb.js} +4731 -4730
- package/lib/creatorDist/index.html +1 -1
- package/lib/utils/api.d.ts +1 -1
- package/lib/utils/api.js +1 -1
- package/package.json +1 -1
- package/src/commands/serve.ts +1153 -3
- package/src/creator/src/components/FileUploader.tsx +1 -2
- package/src/creator/src/utils/rigo.ts +1 -2
- package/src/creatorDist/assets/{index-BhqDgBS9.js → index-DnthLsvb.js} +4731 -4730
- package/src/creatorDist/index.html +1 -1
- package/src/ui/_app/app.css +1 -1
- package/src/ui/_app/app.js +2103 -2101
- package/src/ui/app.tar.gz +0 -0
- package/src/utils/api.ts +2 -1
package/src/ui/app.tar.gz
CHANGED
|
Binary file
|
package/src/utils/api.ts
CHANGED
|
@@ -7,7 +7,8 @@ import * as dotenv from "dotenv"
|
|
|
7
7
|
dotenv.config()
|
|
8
8
|
|
|
9
9
|
const HOST = "https://breathecode.herokuapp.com"
|
|
10
|
-
export const RIGOBOT_HOST =
|
|
10
|
+
export const RIGOBOT_HOST =
|
|
11
|
+
process.env.RIGOBOT_HOST || "https://rigobot.herokuapp.com"
|
|
11
12
|
export const RIGOBOT_REALTIME_HOST = "https://ai.4geeks.com"
|
|
12
13
|
// export const RIGOBOT_REALTIME_HOST = "http://127.0.0.1:8003"
|
|
13
14
|
// export const RIGOBOT_HOST = "https://rigobot-test-cca7d841c9d8.herokuapp.com"
|