1
0
Fork 0
mirror of synced 2024-06-03 02:55:14 +12:00

update functionality complete

This commit is contained in:
Martin McKeaveney 2021-06-01 20:17:06 +01:00
parent 7a0bbfdb84
commit fe65313eed
12 changed files with 37 additions and 41 deletions

View file

@ -64,6 +64,20 @@ services:
- "${REDIS_PORT}:6379"
volumes:
- redis_data:/data
watchtower-service:
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --debug --http-api-update budibase/apps budibase/worker
environment:
- WATCHTOWER_HTTP_API=true
- WATCHTOWER_HTTP_API_TOKEN=budibase
- WATCHTOWER_CLEANUP=true
labels:
- "com.centurylinklabs.watchtower.enable=false"
ports:
- 6161:8080
volumes:
couchdb3_data:

View file

@ -126,7 +126,7 @@ services:
labels:
- "com.centurylinklabs.watchtower.enable=false"
ports:
- 6666:8080
- 6161:8080
volumes:

View file

@ -132,5 +132,4 @@ static_resources:
address:
socket_address:
address: {{ address }}
port_value: 4002
port_value: 4002

View file

@ -140,5 +140,5 @@ static_resources:
address:
socket_address:
address: watchtower-service
port_value: 6666
port_value: 6161

View file

@ -44,7 +44,7 @@
href: "/builder/portal/settings/theming",
},
{
title: "Update",
title: "Updates",
href: "/builder/portal/settings/update",
},
])

View file

@ -70,7 +70,6 @@
loading = false
}
</script>
{#if $auth.isAdmin}

View file

@ -27,17 +27,16 @@
async function updateBudibase() {
try {
notifications.info("Updating budibase..")
// const response = await fetch("http://localhost:6666/v1/update", {
// headers: {
// Authorization: "Bearer budibase"
// }
// })
const response = await fetch("/v1/update", {
headers: {
Authorization: "Bearer budibase",
},
})
notifications.success("Your budibase installation is up to date.")
} catch (err) {
notifications.error(`Error installing budibase update ${err}`)
}
}
</script>
{#if $auth.isAdmin}
@ -45,15 +44,16 @@
<Layout gap="XS" noPadding>
<Heading size="M">Update</Heading>
<Body>
Keep your budibase installation up to date to take advantage of the latest features, security updates and much more.
Keep your budibase installation up to date to take advantage of the
latest features, security updates and much more.
</Body>
</Layout>
<Divider size="S" />
<div class="fields">
<div class="field">
<Button cta on:click={updateBudibase}>Check For Updates</Button>
</div>
<div class="fields">
<div class="field">
<Button cta on:click={updateBudibase}>Check For Updates</Button>
</div>
</div>
</Layout>
{/if}

View file

@ -28,14 +28,14 @@ app.use(
})
)
let logger = pino({
prettyPrint: {
levelFirst: true,
},
level: env.LOG_LEVEL || "error",
})
app.use(logger)
app.use(
pino({
prettyPrint: {
levelFirst: true,
},
level: env.LOG_LEVEL || "error",
})
)
if (!env.isTest()) {
const bullApp = bullboard.init()

View file

@ -1,4 +0,0 @@
exports.fetchDebugLogs = async ctx => {
// read them from file
// serve them
}

View file

@ -1 +0,0 @@
exports.updateSystem = async ctx => {}

View file

@ -1,9 +0,0 @@
const Router = require("@koa/router")
const controller = require("../../controllers/admin/debug")
const adminOnly = require("../../../middleware/adminOnly")
const router = Router()
router.get("/api/admin/debug/logs", adminOnly, controller.fetchDebugLogs)
module.exports = router

View file

@ -5,7 +5,6 @@ const templateRoutes = require("./admin/templates")
const emailRoutes = require("./admin/email")
const authRoutes = require("./admin/auth")
const roleRoutes = require("./admin/roles")
const updatesRoutes = require("./admin/updates")
const appRoutes = require("./app")
exports.routes = [
@ -17,5 +16,4 @@ exports.routes = [
templateRoutes,
emailRoutes,
roleRoutes,
updatesRoutes,
]