A docker-compose microservice that automates the scanning of databases and its table relations.
Databases [MySQL, PostgreSQL, MsSQL]
docker
Supports GET, POST
Run program using Docker-compose
-
Open the docker-compose.yaml file. Fill out the environment section in the backend service defined there. You need to fill in sesam_jwt and sesam_base_url
-
To get your sesam_base_url, go into your sesam node via: https://portal.sesam.io/dashboard. When in your node, navigate to the Subscription tab -> Network tab. In the network tab you'll see the "Default URL". That is the URL that should be pasted in sesam_base_url.
-
To generate a SESAM JWT navigate to the Subscription tab -> JWT tab. In the JWT tab do as instructed to generate a JWT. Paste the JWT in sesam_jwt.
-
-
Navigate to /app in your terminal. Then run the following:
docker-compose build
docker-compose up
To gracefully stopping the containers running run ctrl+c
-
Open your browser and navigate to https://localhost/ and start autoconnecting to your database!
Run program for development purposes
This repo uses the file package.json
and yarn to run the required commands.
- Modify the base_url in app/frontend/src/api/index.js and app/frontend/src/components/NewIndex.vue to use https://localhost:5000/.
- Comments will also be present in the respective files.
-
Make sure you have installed yarn.
-
Run backend - from root:
yarn install
-
Run backend - execute to run the script:
yarn swagger
-
Run frontend - from /frontend:
yarn dev