Skip to content

Commit f8a8d6d

Browse files
Fix README
1 parent 3a159fa commit f8a8d6d

File tree

1 file changed

+28
-5
lines changed

1 file changed

+28
-5
lines changed

README.md

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Azure SQL bindings for Azure Functions are supported for:
2727
- [Docker container](#docker-container)
2828
- [Azure SQL Database](#azure-sql-database)
2929
- [SQL Setup](#sql-setup)
30-
- [Create .NET Function App](#create-net-function-app)
30+
- [Create a Function App](#create-a-function-app)
3131
- [Configure Function App](#configure-function-app)
3232
- [Tutorials](#tutorials)
3333
- [.NET functions](#net-functions)
@@ -103,9 +103,9 @@ ALTER TABLE ['{table_name}'] ADD CONSTRAINT PKey PRIMARY KEY CLUSTERED (['{prima
103103
```
104104

105105

106-
### Create .NET Function App
106+
### Create a Function App
107107

108-
Now you will need a .NET Function App to add the binding to. If you have one created already you can skip this step.
108+
Now you will need a Function App to add the binding to. If you have one created already you can skip this step.
109109

110110
These steps can be done in the Terminal/CLI or with PowerShell.
111111

@@ -120,9 +120,32 @@ These steps can be done in the Terminal/CLI or with PowerShell.
120120
func init --worker-runtime dotnet
121121
```
122122

123-
**Note**: Other languages are not supported at this time
123+
**JavaScript (NodeJS)**
124+
```bash
125+
mkdir MyApp
126+
cd MyApp
127+
func init --worker-runtime node --language javascript
128+
```
129+
130+
**TypeScript (NodeJS)**
131+
```bash
132+
mkdir MyApp
133+
cd MyApp
134+
func init --worker-runtime node --language typescript
135+
```
136+
137+
**Python**
138+
139+
*See [#250](https://github.com/Azure/azure-functions-sql-extension/issues/250) before starting.*
140+
```bash
141+
mkdir MyApp
142+
cd MyApp
143+
func init --worker-runtime python
144+
```
145+
146+
3. Enable SQL bindings on the function app. More information can be found [in Microsoft Docs](https://docs.microsoft.com/azure/azure-functions/functions-bindings-azure-sql).
124147

125-
1. Install the extension.
148+
**.NET:** Install the extension.
126149

127150
```powershell
128151
dotnet add package Microsoft.Azure.WebJobs.Extensions.Sql --prerelease

0 commit comments

Comments
 (0)