1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Update builder to hit port 1000

This commit is contained in:
Andrew Kingston 2021-04-01 10:59:15 +01:00
parent b725c04b32
commit 60a045b4c3
4 changed files with 10 additions and 11 deletions

View file

@ -1,9 +1,9 @@
{
"baseUrl": "http://localhost:4001/builder/",
"baseUrl": "http://localhost:10000/builder/",
"video": true,
"projectId": "bmbemn",
"env": {
"PORT": "4001",
"PORT": "10000",
"JWT_SECRET": "test"
}
}

View file

@ -15,8 +15,8 @@
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:run:ci": "cypress run --browser electron --record --key f308590b-6070-41af-b970-794a3823d451",
"cy:test": "start-server-and-test cy:setup http://localhost:4001/builder cy:run",
"cy:ci": "start-server-and-test cy:setup http://localhost:4001/builder cy:run:ci"
"cy:test": "start-server-and-test cy:setup http://localhost:10000/builder cy:run",
"cy:ci": "start-server-and-test cy:setup http://localhost:10000/builder cy:run:ci"
},
"jest": {
"globals": {

View file

@ -8,8 +8,7 @@ const apiCall = method => async (
) => {
headers["x-budibase-app-id"] = svelteGet(store).appId
const json = headers["Content-Type"] === "application/json"
const fullUrl = `http://192.168.1.175:4001${url}`
return await fetch(fullUrl, {
return await fetch(url, {
method: method,
body: json ? JSON.stringify(body) : body,
headers,

View file

@ -130,11 +130,11 @@ exports.serveAttachment = async function(ctx) {
exports.serveAppAsset = async function(ctx) {
// TODO: can we just always serve this locally? is anything in S3?
if (env.isDev() || env.isTest()) {
const builderPath = resolve(__dirname, "../../../../builder/assets")
return send(ctx, ctx.file, { root: builderPath })
}
await returnObjectStoreFile(ctx, join(ctx.user.appId, "public", ctx.file))
// if (env.isDev() || env.isTest()) {
const builderPath = resolve(__dirname, "../../../../builder/assets")
return send(ctx, ctx.file, { root: builderPath })
// }
// await returnObjectStoreFile(ctx, join(ctx.user.appId, "public", ctx.file))
}
exports.serveComponentLibrary = async function(ctx) {