This commit introduces breaking changes. It overhauls how and where services are configured and placed in the codebase, as well as moving the entire source into src/ It also changes how these integrations are configured via environment variables. Old configs will still work for now, but it is strongly suggested that you migrate your config.
18 lines
685 B
JSON
18 lines
685 B
JSON
{
|
|
"name": "passport",
|
|
"version": "0.2.0",
|
|
"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": {
|
|
"dev": "go generate ./src/; PASSPORT_DEV_MODE=true go run src/main.go",
|
|
"build": "go generate ./src/ && go build -tags netgo,prod -ldflags=\"-w -s\" -o passport"
|
|
},
|
|
"pattern": "src/**/*.{go,hbs,css,svg,png,jpg,jpeg,webp,woff2,ico,webp}",
|
|
"shutdown_signal": "SIGINT"
|
|
} |