mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-02-23 14:39:32 +08:00
fix(docs): Change secret warning to Alert.
This commit is contained in:
parent
a64c4888a6
commit
9be4ef5852
@ -31,8 +31,17 @@ _ref:
|
|||||||
-----------
|
-----------
|
||||||
In a Lowdefy app you can integrate with other services like API's or databases using `connections` and `requests`. Connections configure the connection settings to the service, and often contain contain parameters like connection strings, urls and secrets like passwords or API keys. Requests are used to interact with the connection, like inserting a data record, executing a query or calling a API end-point.
|
In a Lowdefy app you can integrate with other services like API's or databases using `connections` and `requests`. Connections configure the connection settings to the service, and often contain contain parameters like connection strings, urls and secrets like passwords or API keys. Requests are used to interact with the connection, like inserting a data record, executing a query or calling a API end-point.
|
||||||
|
|
||||||
> Sensitive information like passwords or API keys are often required to use external services. The [`_secret`](/_secret) operator should be used to reference these secrets, they should never be coded directly in your app, or committed to source control.
|
- id: alert2
|
||||||
|
type: Alert
|
||||||
|
properties:
|
||||||
|
type: warning
|
||||||
|
showIcon: false
|
||||||
|
message: Sensitive information like passwords or API keys are often required to use external services. The _secret operator should be used to reference these secrets, they should never be coded directly in your app, or committed to source control.
|
||||||
|
|
||||||
|
- id: md2
|
||||||
|
type: Markdown
|
||||||
|
properties:
|
||||||
|
content: |
|
||||||
# Connections
|
# Connections
|
||||||
|
|
||||||
Connections are defined at the root of your Lowdefy configuration, in the `connections` array. Each connection must have an `id`, a `type`, and `properties` defining the connection.
|
Connections are defined at the root of your Lowdefy configuration, in the `connections` array. Each connection must have an `id`, a `type`, and `properties` defining the connection.
|
||||||
|
Loading…
Reference in New Issue
Block a user