-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from bvidotto/feature/add-option-importAtStartUp
Add configuration option to start the data import at each start up
- Loading branch information
Showing
8 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM oven/bun:1.1-alpine as depencies | ||
WORKDIR /src | ||
COPY src/package.json src/bun.lockb ./ | ||
RUN bun install | ||
|
||
|
||
FROM oven/bun:1.1-alpine as builder | ||
WORKDIR /src | ||
COPY src . | ||
COPY --from=depencies /src/node_modules/ /src/node_modules/ | ||
RUN bun run build | ||
|
||
FROM ghcr.io/hassio-addons/base-nodejs:0.2.1 | ||
WORKDIR /app | ||
COPY --from=builder /docker/index.mjs . | ||
|
||
CMD [ "node", "./index.mjs" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ schema: | |
sportCulture: int? | ||
conso: int? | ||
after: match(^(?:\d{4}-\d{2}-\d{2})$)? | ||
importAtStartUp: bool? |
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# https://developers.home-assistant.io/docs/add-ons/repository#repository-configuration | ||
name: Firefly iii - Pluxee | ||
url: 'https://github.com/olibos/ha-addon-pluxee' | ||
maintainer: olibos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters