pull/73/head
Muhammad Atif Ali 2 years ago
parent 2c94c82cbf
commit c565670011
No known key found for this signature in database

@ -5,17 +5,17 @@ printf "$${BOLD}Installing filebrowser \n\n"
curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash
echo "🥳 Installation comlete! \n\n" printf "🥳 Installation comlete! \n\n"
echo "👷 Starting filebrowser in background... \n\n" printf "👷 Starting filebrowser in background... \n\n"
ROOT_DIR=${FOLDER} ROOT_DIR=${FOLDER}
ROOT_DIR=$${ROOT_DIR/\~/$HOME} ROOT_DIR=$${ROOT_DIR/\~/$HOME}
echo "📂 Serving $${ROOT_DIR} at http://localhost:${PORT} \n\n" printf "📂 Serving $${ROOT_DIR} at http://localhost:${PORT} \n\n"
echo "Running 'filebrowser --noauth --root $ROOT_DIR --port ${PORT}' \n\n" printf "Running 'filebrowser --noauth --root $ROOT_DIR --port ${PORT}' \n\n"
filebrowser --noauth --root $ROOT_DIR --port ${PORT} >${LOG_PATH} 2>&1 & filebrowser --noauth --root $ROOT_DIR --port ${PORT} >${LOG_PATH} 2>&1 &
echo "📝 Logs at ${LOG_PATH} \n\n" printf "📝 Logs at ${LOG_PATH} \n\n"

@ -1,8 +1,5 @@
import { describe } from "bun:test"; import { describe } from "bun:test";
import { import { runTerraformInit, testRequiredVariables } from "../test";
runTerraformInit,
testRequiredVariables,
} from "../test";
describe("jetbrains-gateway`", async () => { describe("jetbrains-gateway`", async () => {
await runTerraformInit(import.meta.dir); await runTerraformInit(import.meta.dir);

Loading…
Cancel
Save