Merge pull request #1511 from Budibase/fix/onboarding

Fix/onboarding
This commit is contained in:
Martin McKeaveney 2021-05-20 12:52:29 +01:00 committed by GitHub
commit 270195d85f
14 changed files with 51 additions and 97 deletions

View File

@ -7,12 +7,10 @@ on:
branches: branches:
- master - master
- develop - develop
- next
pull_request: pull_request:
branches: branches:
- master - master
- develop - develop
- next
jobs: jobs:
build: build:

View File

@ -1,34 +1,22 @@
name: Budibase Release name: Budibase Release
on: on:
workflow_dispatch:
inputs:
name:
description: 'Version'
required: false
default: '0.8'
# Trigger the workflow on push with tags,
# but only for the master branch
push: push:
tags: branches:
- 'v*' - master
pull_request:
branches:
- master
jobs: jobs:
release: release:
runs-on: ${{ matrix.os }} runs-on: ubuntu-latest
# Platforms to build on/for
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [12.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: 12.x
- run: yarn - run: yarn
- run: yarn lint - run: yarn lint
- run: yarn bootstrap - run: yarn bootstrap
@ -39,42 +27,14 @@ jobs:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
- run: yarn test - run: yarn test
- name: Prepare for app notarization (macOS) # - name: Publish budibase packages to NPM
if: startsWith(matrix.os, 'macos') # env:
# Import Apple API key for app notarization on macOS # NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: | # run: yarn release
xattr -cr *
mkdir -p ~/private_keys/
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
package_root: packages/server
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
mac_certs: ${{ secrets.mac_certs }}
mac_certs_password: ${{ secrets.mac_certs_password }}
windows_certs: ${{ secrets.windows_certs }}
windows_certs_password: ${{ secrets.windows_certs_password }}
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
env:
# macOS notarization API key
API_KEY_ID: ${{ secrets.api_key_id }}
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
- name: Build/release Docker images - name: Build/release Docker images
# only run the docker image build on linux, easiest way
if: startsWith(matrix.os, 'ubuntu')
env: env:
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }} DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }} DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
run: | run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD run: yarn build:docker
yarn build:docker

View File

@ -1,20 +0,0 @@
#!/usr/bin/env bash
GITHUB_BASE_URL=https://raw.githubusercontent.com/Budibase/budibase/master/hosting
if ! [ -x "$(command -v wget)" ]; then
echo 'Error: wget is not installed. Please install it for your operating system.' >&2
exit 1
fi
fetch_config_files() {
wget $GITHUB_BASE_URL/docker-compose.yaml
wget $GITHUB_BASE_URL/envoy.yaml
wget $GITHUB_BASE_URL/hosting.properties
wget $GITHUB_BASE_URL/start.sh
}
fetch_config_files
# Start budibase
docker-compose --env-file hosting.properties up -d

View File

@ -48,6 +48,7 @@ services:
REDIS_URL: redis-service:6379 REDIS_URL: redis-service:6379
REDIS_PASSWORD: ${REDIS_PASSWORD} REDIS_PASSWORD: ${REDIS_PASSWORD}
depends_on: depends_on:
- redis-service
- minio-service - minio-service
- couch-init - couch-init

View File

@ -3,13 +3,20 @@
tag=$1 tag=$1
tag=${tag:-latest} tag=${tag:-latest}
pushd ../../build pushd ../../build
docker-compose build --force app-service docker-compose build --force app-service
docker-compose build --force worker-service docker-compose build --force worker-service
docker tag build_app-service budibase/budibase-apps:$tag echo "Tagging images with SHA: $GITHUB_SHA and version: $BUDIBASE_VERSION"
docker tag build_worker-service budibase/budibase-worker:$tag
docker push budibase/budibase-apps docker tag build_app-service budibase/apps:$tag
docker push budibase/budibase-worker docker tag build_worker-service budibase/worker:$tag
# Tag with git sha
docker tag build_app-service budibase/apps:$GITHUB_SHA
docker tag build_worker-service budibase/worker:$GITHUB_SHA
docker push budibase/apps
docker push budibase/worker
popd popd

View File

@ -1,2 +0,0 @@
#!/bin/bash
docker-compose --env-file hosting.properties up

View File

@ -1 +0,0 @@
docker-compose --env-file hosting.properties pull && ./start.sh

View File

@ -23,6 +23,7 @@
"initialise": "lerna run initialise", "initialise": "lerna run initialise",
"publishdev": "lerna run publishdev", "publishdev": "lerna run publishdev",
"publishnpm": "yarn build && lerna publish --force-publish", "publishnpm": "yarn build && lerna publish --force-publish",
"release": "lerna publish --force-publish --yes",
"restore": "yarn run clean && yarn run bootstrap && yarn run build", "restore": "yarn run clean && yarn run bootstrap && yarn run build",
"nuke": "yarn run nuke:packages && yarn run nuke:docker", "nuke": "yarn run nuke:packages && yarn run nuke:docker",
"nuke:packages": "yarn run restore", "nuke:packages": "yarn run restore",

View File

@ -8,11 +8,11 @@ export function createAuthStore() {
subscribe: store.subscribe, subscribe: store.subscribe,
checkAuth: async () => { checkAuth: async () => {
const response = await api.get("/api/admin/users/self") const response = await api.get("/api/admin/users/self")
const user = await response.json() if (response.status !== 200) {
if (response.status === 200) {
store.update(state => ({ ...state, user }))
} else {
store.update(state => ({ ...state, user: null })) store.update(state => ({ ...state, user: null }))
} else {
const user = await response.json()
store.update(state => ({ ...state, user }))
} }
}, },
login: async creds => { login: async creds => {

View File

@ -15,7 +15,7 @@ class AnalyticsClient {
} }
capture(event) { capture(event) {
if (this.manager.config.analyticsDisabled) return if (this.configManager.config.analyticsDisabled) return
this.client.capture(event) this.client.capture(event)
} }

View File

@ -11,13 +11,13 @@ async function optOut() {
client.disable() client.disable()
console.log( console.log(
success( success(
"Successfully opted out of budibase analytics. You can opt in at any time by running 'budi analytics opt-in'" "Successfully opted out of Budibase analytics. You can opt in at any time by running 'budi analytics opt-in'"
) )
) )
} catch (err) { } catch (err) {
console.log( console.log(
error( error(
"Error opting out of budibase analytics. Please try again later.", "Error opting out of Budibase analytics. Please try again later.",
err err
) )
) )
@ -30,12 +30,12 @@ async function optIn() {
client.enable() client.enable()
console.log( console.log(
success( success(
"Successfully opted in to budibase analytics. Thank you for helping us make budibase better!" "Successfully opted in to Budibase analytics. Thank you for helping us make Budibase better!"
) )
) )
} catch (err) { } catch (err) {
console.log( console.log(
error("Error opting in to budibase analytics. Please try again later.") error("Error opting in to Budibase analytics. Please try again later.")
) )
} }
} }
@ -51,12 +51,12 @@ async function status() {
} }
const command = new Command(`${CommandWords.ANALYTICS}`) const command = new Command(`${CommandWords.ANALYTICS}`)
.addHelp("Control the analytics you send to budibase.") .addHelp("Control the analytics you send to Budibase.")
.addSubOption("--optin", "Opt in to sending analytics to budibase", optIn) .addSubOption("--optin", "Opt in to sending analytics to Budibase", optIn)
.addSubOption("--optout", "Opt out of sending analytics to budibase.", optOut) .addSubOption("--optout", "Opt out of sending analytics to Budibase.", optOut)
.addSubOption( .addSubOption(
"--status", "--status",
"Check whether you are currently opted in to budibase analytics.", "Check whether you are currently opted in to Budibase analytics.",
status status
) )

View File

@ -16,4 +16,4 @@ exports.AnalyticsEvents = {
} }
exports.BUDIBASE_POSTHOG_URL = "https://posthog.budi.live" exports.BUDIBASE_POSTHOG_URL = "https://posthog.budi.live"
exports.BUDIBASE_POSTHOG_TOKEN = process.env.BUDIBASE_POSTHOG_TOKEN exports.BUDIBASE_POSTHOG_TOKEN = "Oeq9KzIpZYaNsXIvHw5QTZWNpfiG_EOjAOpjTyAiitY"

View File

@ -16,7 +16,9 @@ async function redirect(ctx, method) {
body: ctx.request.body, body: ctx.request.body,
}) })
) )
ctx.body = await response.json() if (response.status !== 200) {
ctx.throw(response.status, response.statusText)
}
const cookie = response.headers.get("set-cookie") const cookie = response.headers.get("set-cookie")
if (cookie) { if (cookie) {
ctx.set("set-cookie", cookie) ctx.set("set-cookie", cookie)

View File

@ -73,6 +73,14 @@ class InMemoryQueue {
this._messages.push(newJob(this._name, msg)) this._messages.push(newJob(this._name, msg))
this._emitter.emit("message") this._emitter.emit("message")
} }
/**
* This removes a cron which has been implemented, this is part of Bull API.
* @param {string} cronJobId The cron which is to be removed.
*/
removeRepeatableByKey(cronJobId) {
// TODO: implement for testing
}
} }
module.exports = InMemoryQueue module.exports = InMemoryQueue