iris_backend / Supabase /config.toml
Muhammed Sameer
Initial commit - Iris Full (under development)
ea9ca44
[functions.verify-domain]
enabled = true
verify_jwt = true
import_map = "./functions/verify-domain/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/verify-domain/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/verify-domain/*.html" ]
[functions.invite-first-admin]
enabled = true
verify_jwt = true
import_map = "./functions/invite-first-admin/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/invite-first-admin/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/invite-first-admin/*.html" ]
[functions.generate-verification-token]
enabled = true
verify_jwt = true
import_map = "./functions/generate-verification-token/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/generate-verification-token/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/generate-verification-token/*.html" ]
[functions.initiate-admin-transfer]
enabled = true
verify_jwt = true
import_map = "./functions/initiate-admin-transfer/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/initiate-admin-transfer/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/initiate-admin-transfer/*.html" ]
[functions.otp]
enabled = true
verify_jwt = true
import_map = "./functions/otp/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/otp/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/otp/*.html" ]
[functions.send-interview-email]
enabled = true
verify_jwt = true
import_map = "./functions/send-interview-email/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/send-interview-email/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/send-interview-email/*.html" ]