mirror of
https://github.com/rappleit/yeego-linkedin-prototype.git
synced 2026-01-12 15:33:54 +08:00
23 lines
1000 B
TOML
23 lines
1000 B
TOML
|
|
[functions.get-unipile-key]
|
|
enabled = true
|
|
verify_jwt = true
|
|
import_map = "./functions/get-unipile-key/deno.json"
|
|
# Uncomment to specify a custom file path to the entrypoint.
|
|
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
|
|
entrypoint = "./functions/get-unipile-key/index.ts"
|
|
# Specifies static files to be bundled with the function. Supports glob patterns.
|
|
# For example, if you want to serve static HTML pages in your function:
|
|
# static_files = [ "./functions/get-unipile-key/*.html" ]
|
|
|
|
[functions.unipile-webhook]
|
|
enabled = true
|
|
verify_jwt = true
|
|
import_map = "./functions/unipile-webhook/deno.json"
|
|
# Uncomment to specify a custom file path to the entrypoint.
|
|
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
|
|
entrypoint = "./functions/unipile-webhook/index.ts"
|
|
# Specifies static files to be bundled with the function. Supports glob patterns.
|
|
# For example, if you want to serve static HTML pages in your function:
|
|
# static_files = [ "./functions/unipile-webhook/*.html" ]
|