Some checks failed
Build and Push Docker Image to GHCR / build-and-push (push) Has been cancelled
This commit fixes a plethora of bugs related to the admin UI, as well as dramatically improving the performance of in-place editing. Furthermore, several server bugs and misc bugs have been fixed. The admin UI is now entirely client side when adding, deleting, or editng a category or link. Other internal improvements hasve also been made.
24 lines
1.0 KiB
JSON
24 lines
1.0 KiB
JSON
{
|
|
"name": "passport",
|
|
"version": "0.3.2",
|
|
"description": "Passport is a simple, lightweight, and fast dashboard/new tab page for your browser.",
|
|
"author": "juls0730",
|
|
"license": "BSL-1.0",
|
|
"homepage": "https://github.com/juls0730/passport",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/juls0730/passport.git"
|
|
},
|
|
"scripts": {
|
|
"generate": "go generate ./src/",
|
|
|
|
"dev": "zqdgr generate; PASSPORT_DEV_MODE=true go run src/main.go",
|
|
"build": "zqdgr generate && go build -tags netgo,prod -ldflags=\"-w -s\" -o passport src/main.go",
|
|
"build:amd64": "zqdgr generate && GOOS=linux GOARCH=amd64 go build -tags netgo,prod -ldflags=\"-w -s\" -o passport src/main.go",
|
|
"build:arm64": "zqdgr generate && GOOS=linux GOARCH=arm64 go build -tags netgo,prod -ldflags=\"-w -s\" -o passport src/main.go"
|
|
},
|
|
"pattern": "src/**/*.{go,hbs,css,js,svg,png,jpg,jpeg,webp,woff2,ico,webp}",
|
|
"excluded_files": ["src/assets/**/*.css"],
|
|
"shutdown_signal": "SIGINT"
|
|
}
|