From 754334fc7f063862e2d189e4c4599a90d5a592ac Mon Sep 17 00:00:00 2001 From: sdorn Date: Tue, 7 Mar 2023 16:02:26 +0100 Subject: [PATCH] Create project --- .gitignore | 1 + README.md | 8 ++++++++ flow.json | 1 + flow_cred.json | 1 + package.json | 12 ++++++++++++ 5 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 flow.json create mode 100644 flow_cred.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c9c01a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.backup \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..eda71d7 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +Weather +======= + +### Produktinfo + +Dies ist die 'README.md'-Datei Ihres Projekts. +Sie hilft den Benutzern zu verstehen, was das Projekt macht, +wie man es verwendet und enthält alles andere Wissenwerte dazu. \ No newline at end of file diff --git a/flow.json b/flow.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/flow.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/flow_cred.json b/flow_cred.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/flow_cred.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..1efa84c --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "Weather", + "description": "Ein Node-RED-Projekt", + "version": "0.0.1", + "dependencies": {}, + "node-red": { + "settings": { + "flowFile": "flow.json", + "credentialsFile": "flow_cred.json" + } + } +} \ No newline at end of file