Skip to content

Commit 207c042

Browse files
committed
docs link
1 parent 1cd19f9 commit 207c042

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

content/docs/scripting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Typically you will need these packages:
1212
* dbgate-plugin-`engine` - set of connector plugins, implements connection to database and operations specific to given database engine
1313
* dbgate-plugin-`fileformat` - if you use export to CSV or XML, these format providers are implemented as external plugins
1414

15-
[Documentation of API](/docs/apidoc)
15+
[Documentation of API](https://docs.dbgate.io/apidoc)
1616

1717
## Generating script from DbGate
1818
Lot of DbGate features are internally implemented with scripting interface. So when you are using some export-like operation, there is somewhere "Generate Shell script" button, which generates nodejs script for you.
@@ -25,7 +25,7 @@ If you want to use nodejs script for exporting, you could use following steps:
2525

2626

2727
## Example 1 - export table to CSV
28-
This is simple example, we are using [tableReader](https://dbgate.org/docs/apidoc.html#tableReader) from `dbgateApi` package and writer from `dbgate-plugin-csv`. Also `dbgate-plugin-mysql` is required, because we are using engine parameter `mysql@dbgate-plugin-mysql`
28+
This is simple example, we are using [tableReader](https://docs.dbgate.io/apidoc#tableReader) from `dbgateApi` package and writer from `dbgate-plugin-csv`. Also `dbgate-plugin-mysql` is required, because we are using engine parameter `mysql@dbgate-plugin-mysql`
2929
```js
3030
const dbgateApi = require('dbgate-api');
3131
const dbgatePluginMysql = require("dbgate-plugin-mysql");

content/features/integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Also you have some options, how to configure web access:
2121
- Web app could be also configured so that user creates custom connections, but this will be probably used only when running web app on localhost
2222

2323
Please use docs for further information:
24-
- [Web app configuration samples](/docs/web-app-config)
25-
- [Environment variables description](/docs/env-variables)
24+
- [Web app configuration samples](https://docs.dbgate.io/web-app-config)
25+
- [Environment variables description](https://docs.dbgate.io/env-variables)

content/features/plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ draft: true
1010
* Extension plugin architecture
1111
* Plugin is normal NPM package, can be published to NPM repository ([all plugins on NPM](https://www.npmjs.com/search?q=keywords:dbgateplugin))
1212
* yeoman template for creating own plugins ([generator on NPM](https://www.npmjs.com/package/generator-dbgate))
13-
* [Documentation for plugin developes](/docs/plugin-development)
13+
* [Documentation for plugin developes](https://docs.dbgate.io/plugin-development)
1414
* Supported plugin types:
1515
* Import/export format
1616
* Database connection driver

0 commit comments

Comments
 (0)