34 lines
1.4 KiB
TOML
34 lines
1.4 KiB
TOML
|
|
[functions.delete-user]
|
|
enabled = true
|
|
verify_jwt = true
|
|
import_map = "./functions/delete-user/deno.json"
|
|
# Uncomment to specify a custom file path to the entrypoint.
|
|
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
|
|
entrypoint = "./functions/delete-user/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/delete-user/*.html" ]
|
|
|
|
[functions.seed-database]
|
|
enabled = true
|
|
verify_jwt = true
|
|
import_map = "./functions/seed-database/deno.json"
|
|
# Uncomment to specify a custom file path to the entrypoint.
|
|
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
|
|
entrypoint = "./functions/seed-database/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/seed-database/*.html" ]
|
|
|
|
[functions.system-check]
|
|
enabled = true
|
|
verify_jwt = true
|
|
import_map = "./functions/system-check/deno.json"
|
|
# Uncomment to specify a custom file path to the entrypoint.
|
|
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
|
|
entrypoint = "./functions/system-check/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/system-check/*.html" ]
|