8 Commits

Author SHA1 Message Date
40b13a0661 Change upload v4 to v3
All checks were successful
Build Slideshow App / build (amd64, .exe, windows) (push) Successful in 2m2s
Build Slideshow App / build (amd64, , linux) (push) Successful in 2m16s
Build Slideshow App / build (arm, 6, , linux) (push) Successful in 1m50s
Build Slideshow App / build (arm64, , linux) (push) Successful in 1m45s
2026-01-17 15:10:58 +01:00
Adrian Zürcher
ff473d0e8d since v6 is not supported downgrade to v4
Some checks failed
Build Slideshow App / build (amd64, .exe, windows) (push) Failing after 2m36s
Build Slideshow App / build (amd64, , linux) (push) Failing after 2m39s
Build Slideshow App / build (arm, 6, , linux) (push) Failing after 1m59s
Build Slideshow App / build (arm64, , linux) (push) Failing after 1m58s
2026-01-17 00:27:16 +01:00
Adrian Zürcher
4798b76b2d update workflow
Some checks failed
Build Slideshow App / build (amd64, , linux) (push) Failing after 29s
Build Slideshow App / build (amd64, .exe, windows) (push) Failing after 30s
Build Slideshow App / build (arm, 6, , linux) (push) Failing after 13s
Build Slideshow App / build (arm64, , linux) (push) Failing after 13s
2026-01-17 00:16:22 +01:00
Adrian Zürcher
80d637f03e add new build workflow
All checks were successful
Build Slideshow App / build (amd64, .exe, windows) (push) Successful in 2m6s
Build Slideshow App / build (amd64, , linux) (push) Successful in 2m10s
Build Slideshow App / build (arm, 6, , linux) (push) Successful in 1m54s
Build Slideshow App / build (arm64, , linux) (push) Successful in 1m54s
2026-01-17 00:05:30 +01:00
Adrian Zürcher
793929ad82 change default interval 2026-01-17 00:05:18 +01:00
Adrian Zürcher
281548c166 add additional ignore 2026-01-17 00:05:06 +01:00
Adrian Zürcher
9543bf407b fix missing static folder 2026-01-17 00:04:52 +01:00
Adrian Zürcher
45c400e7d3 move html to static folder 2026-01-16 07:57:33 +01:00
8 changed files with 103 additions and 8 deletions

2
.env
View File

@@ -2,4 +2,4 @@ ENV= #empty|development
PHOTO_DIR=images
HOST=0.0.0.0
PORT=8080
INTERVAL_DEFAULT=120
INTERVAL_DEFAULT=10

View File

@@ -0,0 +1,93 @@
name: Build Slideshow App
on:
push:
tags:
- '*'
env:
APP_NAME: slideshowApp
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: windows
arch: amd64
ext: .exe
- os: linux
arch: amd64
ext: ""
- os: linux
arch: arm64
ext: ""
- os: linux
arch: arm
arm_version: 6
ext: ""
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Ensure latest Go is installed in /data/go
run: |
export GOROOT=/data/go/go
export PATH=$GOROOT/bin:$PATH
export GOCACHE=/data/gocache
export GOMODCACHE=/data/gomodcache
mkdir -p $GOCACHE $GOMODCACHE
if [ ! -x "$GOROOT/bin/go" ]; then
echo "Go not found in $GOROOT, downloading latest stable..."
GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | head -n1)
echo "Latest version is $GO_VERSION"
mkdir -p /data/go
curl -sSL "https://go.dev/dl/${GO_VERSION}.linux-amd64.tar.gz" -o /tmp/go.tar.gz
tar -C /data/go -xzf /tmp/go.tar.gz
else
echo "Using cached Go from $GOROOT"
fi
go version
- name: Download Go dependencies
run: |
export GOROOT=/data/go/go
export PATH=$GOROOT/bin:$PATH
export GOCACHE=/data/gocache
export GOMODCACHE=/data/gomodcache
mkdir -p $GOCACHE $GOMODCACHE
go mod download
- name: Build binary
run: |
export GOROOT=/data/go/go
export PATH=$GOROOT/bin:$PATH
export GOCACHE=/data/gocache
export GOMODCACHE=/data/gomodcache
mkdir -p $GOCACHE $GOMODCACHE
OUTPUT="${APP_NAME}"
if [ -n "${{ matrix.arm_version }}" ]; then
OUTPUT="${OUTPUT}v${{ matrix.arm_version }}"
export GOARM=${{ matrix.arm_version }}
fi
OUTPUT="${OUTPUT}${{ matrix.ext }}"
echo "Building $OUTPUT"
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -ldflags="-s -w" -trimpath -o "$OUTPUT"
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.APP_NAME }}-${{ matrix.os }}-${{ matrix.arch }}
path: |
./web
${APP_NAME}${{ matrix.ext }}

2
.gitignore vendored
View File

@@ -1,2 +1,2 @@
images/
slideshow_app
slideshowApp

11
main.go
View File

@@ -11,6 +11,8 @@ import (
"github.com/gorilla/mux"
)
var staticFolder = "./web/static/"
func main() {
env.Load(".env")
@@ -23,7 +25,6 @@ func main() {
fmt.Println("upload folder for images not found: ", uploadFolder)
fmt.Println("use fallback")
uploadFolder = "./images"
}
fmt.Println("upload folder for images: ", uploadFolder)
@@ -31,23 +32,23 @@ func main() {
r.HandleFunc("/api/images", handlers.ListFilesHandler).Methods("GET")
r.HandleFunc("/ws", handlers.Websocket)
r.HandleFunc("/upload", handlers.UploadHandler).Methods("POST")
r.HandleFunc("/settings", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "settings.html") })
r.HandleFunc("/settings", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, staticFolder+"settings.html") })
r.HandleFunc("/api/save-schedule", handlers.SaveSchedule).Methods("POST")
r.HandleFunc("/api/get-schedule", handlers.GetSchedule).Methods("GET")
r.HandleFunc("/api/delete", handlers.DeleteHandler).Methods("POST")
r.HandleFunc("/manage", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "manage.html")
http.ServeFile(w, r, staticFolder+"manage.html")
})
r.HandleFunc("/api/info", handlers.InfoHandler).Methods("GET")
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "index.html")
http.ServeFile(w, r, staticFolder+"index.html")
})
// We add a route for the slideshow page specifically
r.HandleFunc("/slideshow", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "frame.html")
http.ServeFile(w, r, staticFolder+"frame.html")
})
host := env.Host.GetValue()

View File

@@ -193,6 +193,7 @@
const res = await fetch('/api/info');
const data = await res.json();
const uploadUrl = `http://${data.ip}:${data.port}/`;
new QRCode(document.getElementById("qrcode"), {
text: uploadUrl,
width: 128,

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Go File Center</title>
<title>Slideshow App</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 min-h-screen flex items-center justify-center p-6">