Refactor gitea-mirror env-file (#7240)
This commit is contained in:
parent
54a9bc8841
commit
dec2ef817a
@ -46,6 +46,39 @@ function update_script() {
|
|||||||
rm -rf /opt/gitea-mirror
|
rm -rf /opt/gitea-mirror
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f /opt/gitea-mirror.env ]]; then
|
||||||
|
msg_info "Detected old Enviroment, updating files"
|
||||||
|
APP_SECRET=$(openssl rand -base64 32)
|
||||||
|
HOST_IP=$(hostname -I | awk '{print $1}')
|
||||||
|
cat <<EOF >/opt/gitea-mirror.env
|
||||||
|
# See here for config options: https://github.com/RayLabsHQ/gitea-mirror/blob/main/docs/ENVIRONMENT_VARIABLES.md
|
||||||
|
NODE_ENV=production
|
||||||
|
HOST=0.0.0.0
|
||||||
|
PORT=4321
|
||||||
|
DATABASE_URL=sqlite://data/gitea-mirror.db
|
||||||
|
BETTER_AUTH_URL=http://${HOST_IP}:4321
|
||||||
|
BETTER_AUTH_SECRET=${APP_SECRET}
|
||||||
|
npm_package_version=${APP_VERSION}
|
||||||
|
EOF
|
||||||
|
rm /etc/systemd/system/gitea-mirror.service
|
||||||
|
cat <<EOF >/etc/systemd/system/gitea-mirror.service
|
||||||
|
[Unit]
|
||||||
|
Description=Gitea Mirror
|
||||||
|
After=network.target
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
WorkingDirectory=/opt/gitea-mirror
|
||||||
|
ExecStart=/usr/local/bin/bun dist/server/entry.mjs
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=10
|
||||||
|
EnvironmentFile=/opt/gitea-mirror.env
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
systemctl daemon-reload
|
||||||
|
msg_ok "Old Enviroment fixed"
|
||||||
|
fi
|
||||||
|
|
||||||
if check_for_gh_release "gitea-mirror" "RayLabsHQ/gitea-mirror"; then
|
if check_for_gh_release "gitea-mirror" "RayLabsHQ/gitea-mirror"; then
|
||||||
msg_info "Stopping Services"
|
msg_info "Stopping Services"
|
||||||
systemctl stop gitea-mirror
|
systemctl stop gitea-mirror
|
||||||
@ -71,7 +104,8 @@ function update_script() {
|
|||||||
$STD bun run setup
|
$STD bun run setup
|
||||||
$STD bun run build
|
$STD bun run build
|
||||||
APP_VERSION=$(grep -o '"version": *"[^"]*"' package.json | cut -d'"' -f4)
|
APP_VERSION=$(grep -o '"version": *"[^"]*"' package.json | cut -d'"' -f4)
|
||||||
sudo sed -i.bak "s|^Environment=npm_package_version=.*|Environment=npm_package_version=${APP_VERSION}|" /etc/systemd/system/gitea-mirror.service
|
|
||||||
|
sudo sed -i.bak "s|^npm_package_version=.*|npm_package_version=${APP_VERSION}|" /opt/gitea-mirror.env
|
||||||
msg_ok "Updated and rebuilt ${APP}"
|
msg_ok "Updated and rebuilt ${APP}"
|
||||||
|
|
||||||
msg_info "Restoring Data"
|
msg_info "Restoring Data"
|
||||||
@ -79,7 +113,6 @@ function update_script() {
|
|||||||
msg_ok "Restored Data"
|
msg_ok "Restored Data"
|
||||||
|
|
||||||
msg_info "Starting Service"
|
msg_info "Starting Service"
|
||||||
systemctl daemon-reload
|
|
||||||
systemctl start gitea-mirror
|
systemctl start gitea-mirror
|
||||||
msg_ok "Service Started"
|
msg_ok "Service Started"
|
||||||
msg_ok "Update Successfully"
|
msg_ok "Update Successfully"
|
||||||
|
@ -37,8 +37,20 @@ $STD bun run build
|
|||||||
msg_ok "Installed gitea-mirror"
|
msg_ok "Installed gitea-mirror"
|
||||||
|
|
||||||
msg_info "Creating Services"
|
msg_info "Creating Services"
|
||||||
JWT_SECRET=$(openssl rand -hex 32)
|
APP_SECRET=$(openssl rand -base64 32)
|
||||||
APP_VERSION=$(grep -o '"version": *"[^"]*"' package.json | cut -d'"' -f4)
|
APP_VERSION=$(grep -o '"version": *"[^"]*"' package.json | cut -d'"' -f4)
|
||||||
|
HOST_IP=$(hostname -I | awk '{print $1}')
|
||||||
|
cat <<EOF >/opt/gitea-mirror.env
|
||||||
|
# See here for config options: https://github.com/RayLabsHQ/gitea-mirror/blob/main/docs/ENVIRONMENT_VARIABLES.md
|
||||||
|
NODE_ENV=production
|
||||||
|
HOST=0.0.0.0
|
||||||
|
PORT=4321
|
||||||
|
DATABASE_URL=sqlite://data/gitea-mirror.db
|
||||||
|
BETTER_AUTH_URL=http://${HOST_IP}:4321
|
||||||
|
BETTER_AUTH_SECRET=${APP_SECRET}
|
||||||
|
npm_package_version=${APP_VERSION}
|
||||||
|
EOF
|
||||||
|
|
||||||
cat <<EOF >/etc/systemd/system/gitea-mirror.service
|
cat <<EOF >/etc/systemd/system/gitea-mirror.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Gitea Mirror
|
Description=Gitea Mirror
|
||||||
@ -49,12 +61,7 @@ WorkingDirectory=/opt/gitea-mirror
|
|||||||
ExecStart=/usr/local/bin/bun dist/server/entry.mjs
|
ExecStart=/usr/local/bin/bun dist/server/entry.mjs
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=10
|
RestartSec=10
|
||||||
Environment=NODE_ENV=production
|
EnvironmentFile=/opt/gitea-mirror.env
|
||||||
Environment=HOST=0.0.0.0
|
|
||||||
Environment=PORT=4321
|
|
||||||
Environment=DATABASE_URL=file:/opt/gitea-mirror/data/gitea-mirror.db
|
|
||||||
Environment=JWT_SECRET=${JWT_SECRET}
|
|
||||||
Environment=npm_package_version=${APP_VERSION}
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
Loading…
x
Reference in New Issue
Block a user