-
Notifications
You must be signed in to change notification settings - Fork 260
36 Upgrade Functions -> v3 #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d55a84e
#36 upgrade drivers => v3
DanielLarsenNZ a95a578
#36 upgrade Orchestrators => v3
DanielLarsenNZ 2d48734
#36 upgrade Passengers & Trips
DanielLarsenNZ 24f58be
#36 upgrade shared libs => dotnet 3.1
DanielLarsenNZ 5e78db2
#36 upgrade nugets - low risk
DanielLarsenNZ d99f9d0
#36 refactor for new Storage Queue client SDK
DanielLarsenNZ 75cf99f
#36 fix storage dependency
DanielLarsenNZ c2f8963
#36 remove Newtonsoft
DanielLarsenNZ 157b24c
#36 upgrade SignalR
DanielLarsenNZ 470dd83
#36 upgrade SignalR client
DanielLarsenNZ e7568ad
#36 upgrade SignalR server
DanielLarsenNZ 6f4d28c
#36 upgrade identity model
DanielLarsenNZ 3973d9c
Path filters on build actions
DanielLarsenNZ 82e8752
Merge branch 'main' into 36-functions-v3
DanielLarsenNZ d94eba7
#36 upgrade Event Grid
DanielLarsenNZ cae9913
#36 upgrade Dapper
DanielLarsenNZ e994f4e
#36 upgrade Cosmos and refactor service
DanielLarsenNZ b0a34ee
Fix build action paths
DanielLarsenNZ 68f2e31
Merge branch 'main' into 36-functions-v3
DanielLarsenNZ 2c59d97
Merge branch 'refresh-functions-v4' into 36-functions-v3
DanielLarsenNZ d88af24
#36 run local
DanielLarsenNZ 8242329
#36 run local
DanielLarsenNZ 7757d5e
#36 Test local
DanielLarsenNZ 00a659f
#36 getting started
DanielLarsenNZ b4dacea
#36 test local - done
DanielLarsenNZ f38b8c0
#36 upgrade nodejs function -> v3
DanielLarsenNZ 389b4be
#36 Build and run SPA on localhost
DanielLarsenNZ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- '*' | ||
paths: [ 'dotnet/**' ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- '*' | ||
paths: [ 'nodejs/**' ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,7 @@ | |
|
||
# Build temp package lock | ||
pipelines/package-lock.json | ||
|
||
bicep/parameters.local.json | ||
local.settings.json | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,9 @@ | |
}, | ||
"secretName": "sqlAdminPassword" | ||
} | ||
}, | ||
"staticWebAppLocation": { | ||
"value": "westus2" | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
{ | ||
"version": "2.0" | ||
} |
11 changes: 11 additions & 0 deletions
11
dotnet/ServerlessMicroservices.FunctionApp.Drivers/local.settings.example.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"IsEncrypted": false, | ||
"Values": { | ||
"AzureWebJobsStorage": "UseDevelopmentStorage=true", | ||
"FUNCTIONS_WORKER_RUNTIME": "dotnet", | ||
"DocDbEndpointUri": "", | ||
"DocDbApiKey": "", | ||
"DocDbRideShareDatabaseName": "", | ||
"DocDbRideShareMainCollectionName": "" | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
dotnet/ServerlessMicroservices.FunctionApp.Orchestrators/Properties/launchSettings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"profiles": { | ||
"ServerlessMicroservices.FunctionApp.Orchestrators": { | ||
"commandName": "Project", | ||
"commandLineArgs": "start --port 7074" | ||
} | ||
} | ||
} |
15 changes: 9 additions & 6 deletions
15
...rvices.FunctionApp.Orchestrators/ServerlessMicroservices.FunctionApp.Orchestrators.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.