Merge branch 'main' of github.com:martabal/immich-exporter

This commit is contained in:
martin 2023-02-15 20:45:33 +01:00
commit 5b426932cf
No known key found for this signature in database
GPG key ID: 4544CC55835A3B9E

View file

@ -4,7 +4,11 @@
"description": "exporter for immich",
"main": "src/main.go",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"dev" : "go run ./src",
"dev:env" : "go run ./src -e",
"build" : "go build -o ./immich-exporter.out ./src && ./immich-exporter.out -e",
"build:env" : "go build -o ./immich-exporter.out ./src && ./immich-exporter.out -e"
},
"keywords": [
"exporter",
@ -15,5 +19,5 @@
"prometheus"
],
"author": "martabal",
"license": "ISC"
"license": "MIT"
}