Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/commands/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ netlify functions:create
- `language` (*string*) - function language
- `name` (*string*) - function name
- `offline` (*boolean*) - Disables any features that require network access
- `template` (*string*) - bundled template to use (skips the interactive template picker)
- `url` (*string*) - pull template from URL
- `debug` (*boolean*) - Print debugging information
- `auth` (*string*) - Netlify auth token - can be used to run this command without logging in
Expand All @@ -89,6 +90,7 @@ netlify functions:create
netlify functions:create
netlify functions:create hello-world
netlify functions:create --name hello-world
netlify functions:create --language typescript --template hello-world
```

---
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default {
name: 'database-drizzle',
description: 'Query a Netlify Database table with Drizzle ORM',
functionType: 'serverless',
}
Loading
Loading