From dd136858f1ea40ad3c94191d647487fa4f31926c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 18 Oct 2024 20:33:49 +0200 Subject: Adding upstream version 9.0.0. Signed-off-by: Daniel Baumann --- .gitpod.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .gitpod.yml (limited to '.gitpod.yml') diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..8671edc --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,51 @@ +tasks: + - name: Setup + init: | + cp -r contrib/ide/vscode .vscode + make deps + make build + command: | + gp sync-done setup + exit 0 + - name: Run backend + command: | + gp sync-await setup + + # Get the URL and extract the domain + url=$(gp url 3000) + domain=$(echo $url | awk -F[/:] '{print $4}') + + if [ -f custom/conf/app.ini ]; then + sed -i "s|^ROOT_URL =.*|ROOT_URL = ${url}/|" custom/conf/app.ini + sed -i "s|^DOMAIN =.*|DOMAIN = ${domain}|" custom/conf/app.ini + sed -i "s|^SSH_DOMAIN =.*|SSH_DOMAIN = ${domain}|" custom/conf/app.ini + sed -i "s|^NO_REPLY_ADDRESS =.*|SSH_DOMAIN = noreply.${domain}|" custom/conf/app.ini + else + mkdir -p custom/conf/ + echo -e "[server]\nROOT_URL = ${url}/" > custom/conf/app.ini + echo -e "\n[database]\nDB_TYPE = sqlite3\nPATH = $GITPOD_REPO_ROOT/data/gitea.db" >> custom/conf/app.ini + fi + export TAGS="sqlite sqlite_unlock_notify" + make watch-backend + - name: Run frontend + command: | + gp sync-await setup + make watch-frontend + openMode: split-right + +vscode: + extensions: + - editorconfig.editorconfig + - dbaeumer.vscode-eslint + - golang.go + - stylelint.vscode-stylelint + - DavidAnson.vscode-markdownlint + - Vue.volar + - ms-azuretools.vscode-docker + - vitest.explorer + - cweijan.vscode-database-client2 + - GitHub.vscode-pull-request-github + +ports: + - name: Gitea + port: 3000 -- cgit v1.2.3