Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.18 KB

README.md

File metadata and controls

50 lines (39 loc) · 1.18 KB

eQuery

Interface para realizar consultas a MSSQL y exportarlas en distintos formatos

Electron

electron

To run the aplication you need:

  1. In the frontend folder run yarn build. This command generate build folder
  2. 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

electron-builder

electron-builder build  --windows dir

...chrome-sandbox is owned by root and has mode 4755.
sudo sysctl kernel.unprivileged_userns_clone=1

Front-encoded

The front-end is a single-page application build with React

Back-end

The back-end is a API Rest build with Node.js

config.json

{
  "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"
}