Interface para realizar consultas a MSSQL y exportarlas en distintos formatos
To run the aplication you need:
- In the frontend folder run
yarn build
. This command generate build folder - In the root folder run
electron .
If you want to package and build a ready for distribution Electron app for macOS, Windows and Linux, yuo can use electron-builder
electron-builder build --windows dir
...chrome-sandbox is owned by root and has mode 4755.
sudo sysctl kernel.unprivileged_userns_clone=1
The front-end is a single-page application build with React
The back-end is a API Rest build with Node.js
{
"node_port": 5555,
"json_indentation": 4,
"mssql": {
"user": "your_user",
"password": "your_passwoed",
"server": "your_server_ip",
"database": "your_database"
}
}
If you use Microsoft SQL Server 2005 append this lines in "mssql" section
"options": {
"encrypt": false,
"instanceName": "intance"
}