From 5b5d1f28834e13fdbd85061f7eba613e876cf853 Mon Sep 17 00:00:00 2001 From: dfcarvajal Date: Wed, 22 Oct 2025 11:31:25 +0200 Subject: [PATCH] Create project --- .gitignore | 1 + README.md | 9 +++++++++ flows.json | 1 + flows_cred.json | 1 + package.json | 12 ++++++++++++ 5 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 flows.json create mode 100644 flows_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..224a68b --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +SQL_to_Postgis +============== + +Migración de los datos de SQL a PostGIS + +### About + +This is your project's README.md file. It helps users understand what your +project does, how to use it and anything else they may need to know. \ No newline at end of file diff --git a/flows.json b/flows.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/flows.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/flows_cred.json b/flows_cred.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/flows_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..8303190 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "SQL_to_Postgis", + "description": "Migración de los datos de SQL a PostGIS", + "version": "0.0.1", + "dependencies": {}, + "node-red": { + "settings": { + "flowFile": "flows.json", + "credentialsFile": "flows_cred.json" + } + } +} \ No newline at end of file