2021-03-22 18:05:00 +01:00
|
|
|
#!/usr/bin/env node
|
|
|
|
const compose = require("docker-compose")
|
|
|
|
const path = require("path")
|
2021-03-23 16:37:11 +01:00
|
|
|
const fs = require("fs")
|
2021-03-22 18:05:00 +01:00
|
|
|
|
|
|
|
// This script wraps docker-compose allowing you to manage your dev infrastructure with simple commands.
|
|
|
|
const CONFIG = {
|
|
|
|
cwd: path.resolve(process.cwd(), "../../hosting"),
|
|
|
|
config: "docker-compose.dev.yaml",
|
|
|
|
log: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
const Commands = {
|
|
|
|
Up: "up",
|
|
|
|
Down: "down",
|
|
|
|
Nuke: "nuke",
|
|
|
|
}
|
|
|
|
|
2021-03-23 16:37:11 +01:00
|
|
|
async function init() {
|
|
|
|
const envFilePath = path.join(process.cwd(), ".env")
|
2021-08-05 10:59:08 +02:00
|
|
|
if (!fs.existsSync(envFilePath)) {
|
|
|
|
const envFileJson = {
|
|
|
|
PORT: 4001,
|
2022-01-30 21:25:56 +01:00
|
|
|
MINIO_URL: "http://localhost:4004",
|
2022-02-18 18:36:23 +01:00
|
|
|
COUCH_DB_URL: "http://budibase:budibase@localhost:4005",
|
2021-08-05 10:59:08 +02:00
|
|
|
REDIS_URL: "localhost:6379",
|
|
|
|
WORKER_URL: "http://localhost:4002",
|
|
|
|
INTERNAL_API_KEY: "budibase",
|
2022-03-03 14:37:04 +01:00
|
|
|
ACCOUNT_PORTAL_URL: "http://localhost:10001",
|
|
|
|
ACCOUNT_PORTAL_API_KEY: "budibase",
|
2021-08-05 10:59:08 +02:00
|
|
|
JWT_SECRET: "testsecret",
|
2023-01-16 19:51:48 +01:00
|
|
|
ENCRYPTION_KEY: "testsecret",
|
2021-08-05 10:59:08 +02:00
|
|
|
REDIS_PASSWORD: "budibase",
|
|
|
|
MINIO_ACCESS_KEY: "budibase",
|
|
|
|
MINIO_SECRET_KEY: "budibase",
|
|
|
|
COUCH_DB_PASSWORD: "budibase",
|
|
|
|
COUCH_DB_USER: "budibase",
|
|
|
|
SELF_HOSTED: 1,
|
2023-02-02 17:38:23 +01:00
|
|
|
DISABLE_ACCOUNT_PORTAL: 1,
|
2021-08-05 10:59:08 +02:00
|
|
|
MULTI_TENANCY: "",
|
2021-11-22 18:42:41 +01:00
|
|
|
DISABLE_THREADING: 1,
|
2022-06-01 15:10:00 +02:00
|
|
|
SERVICE: "app-service",
|
|
|
|
DEPLOYMENT_ENVIRONMENT: "development",
|
2022-06-30 12:28:52 +02:00
|
|
|
BB_ADMIN_USER_EMAIL: "",
|
|
|
|
BB_ADMIN_USER_PASSWORD: "",
|
2022-08-15 23:23:45 +02:00
|
|
|
PLUGINS_DIR: "",
|
2023-02-01 15:12:43 +01:00
|
|
|
TENANT_FEATURE_FLAGS: "*:LICENSING,*:USER_GROUPS,*:ONBOARDING_TOUR",
|
2023-04-05 16:33:56 +02:00
|
|
|
HTTP_MIGRATIONS: "0",
|
|
|
|
HTTP_LOGGING: "0",
|
2023-10-20 16:21:48 +02:00
|
|
|
VERSION: "0.0.0+local",
|
2021-08-05 10:59:08 +02:00
|
|
|
}
|
|
|
|
let envFile = ""
|
|
|
|
Object.keys(envFileJson).forEach(key => {
|
|
|
|
envFile += `${key}=${envFileJson[key]}\n`
|
|
|
|
})
|
|
|
|
fs.writeFileSync(envFilePath, envFile)
|
2021-03-23 16:37:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 18:05:00 +01:00
|
|
|
async function up() {
|
|
|
|
console.log("Spinning up your budibase dev environment... 🔧✨")
|
2021-03-23 16:37:11 +01:00
|
|
|
await init()
|
2022-09-16 10:25:14 +02:00
|
|
|
await compose.upAll(CONFIG)
|
2022-09-15 17:31:29 +02:00
|
|
|
|
|
|
|
// We always ensure to restart the proxy service in case of nginx conf changes
|
|
|
|
await compose.restartOne("proxy-service", CONFIG)
|
2021-03-22 18:05:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function down() {
|
|
|
|
console.log("Spinning down your budibase dev environment... 🌇")
|
2021-03-23 12:01:33 +01:00
|
|
|
await compose.stop(CONFIG)
|
2021-03-22 18:05:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function nuke() {
|
|
|
|
console.log(
|
|
|
|
"Clearing down your budibase dev environment, including all containers and volumes... 💥"
|
|
|
|
)
|
2021-04-08 19:18:53 +02:00
|
|
|
await compose.down({
|
|
|
|
...CONFIG,
|
|
|
|
// stop containers, delete volumes
|
|
|
|
commandOptions: ["-v", "--remove-orphans"],
|
|
|
|
})
|
2021-03-22 18:05:00 +01:00
|
|
|
}
|
|
|
|
|
2021-03-22 20:35:29 +01:00
|
|
|
const managementCommand = process.argv.slice(2)[0]
|
|
|
|
|
|
|
|
if (
|
|
|
|
!managementCommand ||
|
2021-05-04 12:32:22 +02:00
|
|
|
!Object.values(Commands).some(command => managementCommand === command)
|
2021-03-22 20:35:29 +01:00
|
|
|
) {
|
|
|
|
throw new Error(
|
|
|
|
"You must supply either an 'up', 'down' or 'nuke' commmand to manage the budibase development environment."
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-03-22 18:05:00 +01:00
|
|
|
let command
|
|
|
|
switch (managementCommand) {
|
|
|
|
case Commands.Up:
|
|
|
|
command = up
|
|
|
|
break
|
|
|
|
case Commands.Down:
|
|
|
|
command = down
|
|
|
|
break
|
|
|
|
case Commands.Nuke:
|
|
|
|
command = nuke
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
command = up
|
|
|
|
}
|
|
|
|
|
|
|
|
command()
|
|
|
|
.then(() => {
|
|
|
|
console.log("Done! 🎉")
|
|
|
|
})
|
2021-05-04 12:32:22 +02:00
|
|
|
.catch(err => {
|
2021-03-23 12:01:33 +01:00
|
|
|
console.error(
|
|
|
|
"Something went wrong while managing budibase dev environment:",
|
|
|
|
err.message
|
|
|
|
)
|
2021-03-22 18:05:00 +01:00
|
|
|
})
|