Web based sql editor for VoltDB
Download or clone the project
git clone https://github.com/aamadeo27/vsqle.git
Node v8 or later
cd client/
npm install
npm run build
cd ../server/
npm install
{
"key" : "server.key",
"cert" : "server.crt",
["ca" : "ca.crt",]
"origin" : "http://10.150.55.146:3000",
"port" : 8084,
"voltdbPort" : 21212,
"loginDelay": 1200
}
"key","cert"[,"ca"] : The server runs on https so it needs a server private key, a server certificate and optionally a ca certificate.
"origin" : It defines a domain to allow CORS
"port" : Port of the vsqle server
"voltdbPort" : Port of the voltdb server
"loginDelay" : It's a delay used to wait for errors in a Login operation to the database.
cd server/
node server.js
- Albert Amadeo - Initial work - aamadeo27
This project is licensed under the MIT License - see the LICENSE.md file for details