dbgate-serve-premium 5.5.7-alpha.48 → 5.5.7-alpha.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +61 -4
  2. package/package.json +15 -10
package/README.md CHANGED
@@ -2,13 +2,47 @@
2
2
  [![NPM version](https://img.shields.io/npm/v/dbgate.svg)](https://www.npmjs.com/package/dbgate)
3
3
 
4
4
  # DbGate - database administration tool
5
- DbGate is fast and easy to use database administration tool for MySQL, PostgreSQL, SQL Server.
5
+ DbGate is cross-platform database manager.
6
+ It's designed to be simple to use and effective, when working with more databases simultaneously.
7
+ But there are also many advanced features like schema compare, visual query designer, chart visualisation or batch export and import.
6
8
 
7
- ## Install using npm
9
+ ## Supported databases
10
+ * MySQL
11
+ * PostgreSQL
12
+ * SQL Server
13
+ * Oracle
14
+ * MongoDB
15
+ * Redis
16
+ * SQLite
17
+ * Amazon Redshift (Premium)
18
+ * CockroachDB
19
+ * MariaDB
20
+ * CosmosDB (Premium)
21
+ * ClickHouse
22
+
23
+ ## Community vs Premium
24
+ This package has 2 variants:
25
+ * [dbgate-serve](https://www.npmjs.com/package/dbgate-serve) - Community edition (free and open source)
26
+ * [dbgate-serve-premium](https://www.npmjs.com/package/dbgate-serve-premium) - Premium edition (commercial)
27
+
28
+ ## Install using npm - premium edition
8
29
  ```sh
9
30
  npm install -g dbgate-serve-premium
10
31
  ```
11
32
 
33
+ DbGate is configure via environment variables. In this package, you could use .env files with configuration of DbGate. .env file is loaded in working directory.
34
+
35
+ .env file could look like following:
36
+ ```
37
+ STORAGE_SERVER=localhost
38
+ STORAGE_USER=root
39
+ STORAGE_PASSWORD=mypassword
40
+ STORAGE_DATABASE=dbname
41
+ STORAGE_ENGINE=mysql@dbgate-plugin-mysql
42
+ ```
43
+
44
+ You could find more about environment variable configuration on [DbGate docs](https://dbgate.org/docs/env-variables.html) page.
45
+
12
46
  After installing, you can run dbgate with command:
13
47
  ```sh
14
48
  dbgate-serve-premium
@@ -16,8 +50,31 @@ dbgate-serve-premium
16
50
 
17
51
  Then open http://localhost:3000 in your browser
18
52
 
19
- ## Download electron app
20
- You can also download binary packages from https://dbgate.org . Or run from source code, as described on [github](https://github.com/dbgate/dbgate)
53
+ ## Install using npm - community edition
54
+ ```sh
55
+ npm install -g dbgate-serve
56
+ ```
57
+
58
+ After installing, you can run dbgate with command:
59
+ ```sh
60
+ dbgate-serve
61
+ ```
62
+
63
+ .env file could be used in the same way as in Premium edition, without STORAGE_xxx variables, which are specific for Premium.
64
+
65
+ Then open http://localhost:3000 in your browser
66
+
67
+ ## Download desktop app
68
+ You can also download binary packages for desktop app from https://dbgate.org . Or run from source code, as described on [github](https://github.com/dbgate/dbgate)
69
+
70
+ ## Use Oracle with Instant client (thick mode)
71
+ If you are Oracle database user and you would like to use Oracle instant client (thick mode) instead of thin mode (pure JS NPM package), please make the following:
72
+ * Download Oracle instant client - https://www.oracle.com/cz/database/technologies/instant-client/downloads.html
73
+ * Unpack it somewhere (og. /opt/oracle in Linux systems)
74
+ * Configure ORACLE_INSTANT_CLIENT variable - should contain directory name of unpacked Instant client
75
+
76
+ If you don't know, whether you will need Instance client, please use this [table](https://node-oracledb.readthedocs.io/en/latest/user_guide/appendix_a.html) of features,
77
+ which are supported only in thick mode (with instant client). Eg. thin mode works from Oracle 12, if you have older Oracle server, you will need to install Oracle Instant client.
21
78
 
22
79
  ## Other dbgate packages
23
80
  You can use some functionality of dbgate from your JavaScript code. See [dbgate-api](https://npmjs.com/dbgate-api) package.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dbgate-serve-premium",
3
- "version": "5.5.7-alpha.48",
3
+ "version": "5.5.7-alpha.51",
4
4
  "homepage": "https://dbgate.org/",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,15 +18,20 @@
18
18
  "web"
19
19
  ],
20
20
  "dependencies": {
21
- "dbgate-plugin-csv": "^5.5.7-alpha.48",
22
- "dbgate-plugin-excel": "^5.5.7-alpha.48",
23
- "dbgate-plugin-mongo": "^5.5.7-alpha.48",
24
- "dbgate-plugin-mssql": "^5.5.7-alpha.48",
25
- "dbgate-plugin-mysql": "^5.5.7-alpha.48",
26
- "dbgate-plugin-postgres": "^5.5.7-alpha.48",
27
- "dbgate-plugin-xml": "^5.5.7-alpha.48",
21
+ "dbgate-plugin-clickhouse": "^5.5.7-alpha.51",
22
+ "dbgate-plugin-csv": "^5.5.7-alpha.51",
23
+ "dbgate-plugin-excel": "^5.5.7-alpha.51",
24
+ "dbgate-plugin-mongo": "^5.5.7-alpha.51",
25
+ "dbgate-plugin-mssql": "^5.5.7-alpha.51",
26
+ "dbgate-plugin-mysql": "^5.5.7-alpha.51",
27
+ "dbgate-plugin-oracle": "^5.5.7-alpha.51",
28
+ "dbgate-plugin-postgres": "^5.5.7-alpha.51",
29
+ "dbgate-plugin-redis": "^5.5.7-alpha.51",
30
+ "dbgate-plugin-sqlite": "^5.5.7-alpha.51",
31
+ "dbgate-plugin-xml": "^5.5.7-alpha.51",
28
32
  "dotenv": "^16.0.0",
29
- "dbgate-api-premium": "^5.5.7-alpha.48",
30
- "dbgate-web-premium": "^5.5.7-alpha.48"
33
+ "dbgate-api-premium": "^5.5.7-alpha.51",
34
+ "dbgate-web-premium": "^5.5.7-alpha.51",
35
+ "dbgate-plugin-cosmosdb": "^5.5.7-alpha.51"
31
36
  }
32
37
  }