You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+48-6
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,39 @@
1
1
# etlp-mapper
2
2
3
-
FIXME: description
3
+
Etlp-mapper is a microservice that allows users to create jute based low code data transformation logic.
4
+
This service can be used as a standalone Jute based data transformation utility, however, this service forms a crucial component of the `etl` based smart data connectors.
4
5
5
-
## Developing
6
6
7
-
### Setup
7
+
## Setup
8
+
9
+
10
+
### Production Build
11
+
12
+
As a precursor you would need Leiningen, Clojure and Java installed on our machine, once we have the basic runtime up an running, we need to clone this repo and build an uberjar.
13
+
14
+
15
+
```sh
16
+
$ lein deps
17
+
$ lein uberjar
18
+
19
+
```
20
+
21
+
#### Run Migrations
22
+
23
+
This service depends on Postgres >= v14.00, after successful java jar build, we need to run the migrations to create basic set of tables for our microservice. Once the migrations are successfully applied, we can simply run our jar and it should start the web server at `localhost:3000`
0 commit comments