Skip to content

Commit dc1d4da

Browse files
committed
first change to vite
navigation bar width css looks good url-fetch step point delete axios fix detail card tabbed container padding Ico file for search, nav white text fix secrets in bulk upload
1 parent f726abb commit dc1d4da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+5336
-22
lines changed

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"ms-azuretools.vscode-azurefunctions",
4+
"ms-dotnettools.csharp"
5+
]
6+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to .NET Functions",
6+
"type": "coreclr",
7+
"request": "attach",
8+
"processId": "${command:azureFunctions.pickProcess}"
9+
}
10+
]
11+
}

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"azureFunctions.deploySubpath": "api/bin/Release/net9.0/publish",
3+
"azureFunctions.projectLanguage": "C#",
4+
"azureFunctions.projectRuntime": "~4",
5+
"debug.internalConsoleOptions": "neverOpen",
6+
"azureFunctions.preDeployTask": "publish (functions)",
7+
"appService.zipIgnorePattern": [
8+
"node_modules{,/**}",
9+
".vscode{,/**}"
10+
]
11+
}

.vscode/tasks.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "clean (functions)",
6+
"command": "dotnet",
7+
"args": [
8+
"clean",
9+
"/property:GenerateFullPaths=true",
10+
"/consoleloggerparameters:NoSummary"
11+
],
12+
"type": "process",
13+
"problemMatcher": "$msCompile",
14+
"options": {
15+
"cwd": "${workspaceFolder}/api"
16+
}
17+
},
18+
{
19+
"label": "build (functions)",
20+
"command": "dotnet",
21+
"args": [
22+
"build",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"type": "process",
27+
"dependsOn": "clean (functions)",
28+
"group": {
29+
"kind": "build",
30+
"isDefault": true
31+
},
32+
"problemMatcher": "$msCompile",
33+
"options": {
34+
"cwd": "${workspaceFolder}/api"
35+
}
36+
},
37+
{
38+
"label": "clean release (functions)",
39+
"command": "dotnet",
40+
"args": [
41+
"clean",
42+
"--configuration",
43+
"Release",
44+
"/property:GenerateFullPaths=true",
45+
"/consoleloggerparameters:NoSummary"
46+
],
47+
"type": "process",
48+
"problemMatcher": "$msCompile",
49+
"options": {
50+
"cwd": "${workspaceFolder}/api"
51+
}
52+
},
53+
{
54+
"label": "publish (functions)",
55+
"command": "dotnet",
56+
"args": [
57+
"publish",
58+
"--configuration",
59+
"Release",
60+
"/property:GenerateFullPaths=true",
61+
"/consoleloggerparameters:NoSummary"
62+
],
63+
"type": "process",
64+
"dependsOn": "clean release (functions)",
65+
"problemMatcher": "$msCompile",
66+
"options": {
67+
"cwd": "${workspaceFolder}/api"
68+
}
69+
},
70+
{
71+
"type": "func",
72+
"dependsOn": "build (functions)",
73+
"options": {
74+
"cwd": "${workspaceFolder}/api/bin/Debug/net9.0"
75+
},
76+
"command": "host start",
77+
"isBackground": true,
78+
"problemMatcher": "$func-dotnet-watch"
79+
}
80+
]
81+
}

api/http/search.http

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
POST http://localhost:7071/api/search HTTP/1.1
1+
POST https://dib-2.azurewebsites.net/api/search HTTP/1.1
22
content-type: application/json
33

44
{
5-
"q": "dog",
6-
"top": 3,
7-
"skip": 5,
8-
5+
"q": "dog"
96
}

api/sample.local.settings.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

azure-search-static-web-app.sln

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.5.2.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "azure-search-function", "api\azure-search-function.csproj", "{F04A3EAA-1925-5D27-BD32-CB5A41208BC0}"
6+
EndProject
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BulkInsert", "bulk-insert\BulkInsert.csproj", "{1829AA28-8389-0E06-4AFD-5A102CFC3015}"
8+
EndProject
9+
Global
10+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
11+
Debug|Any CPU = Debug|Any CPU
12+
Release|Any CPU = Release|Any CPU
13+
EndGlobalSection
14+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15+
{F04A3EAA-1925-5D27-BD32-CB5A41208BC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{F04A3EAA-1925-5D27-BD32-CB5A41208BC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{F04A3EAA-1925-5D27-BD32-CB5A41208BC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{F04A3EAA-1925-5D27-BD32-CB5A41208BC0}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{1829AA28-8389-0E06-4AFD-5A102CFC3015}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{1829AA28-8389-0E06-4AFD-5A102CFC3015}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{1829AA28-8389-0E06-4AFD-5A102CFC3015}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{1829AA28-8389-0E06-4AFD-5A102CFC3015}.Release|Any CPU.Build.0 = Release|Any CPU
23+
EndGlobalSection
24+
GlobalSection(SolutionProperties) = preSolution
25+
HideSolutionNode = FALSE
26+
EndGlobalSection
27+
GlobalSection(ExtensibilityGlobals) = postSolution
28+
SolutionGuid = {8513C4F4-CD29-488A-A0ED-D02E2EDDA358}
29+
EndGlobalSection
30+
EndGlobal

client/.deployment

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[config]
2+
SCM_DO_BUILD_DURING_DEPLOYMENT=true

client/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"scripts": {
3232
"start": "react-scripts start",
3333
"build": "CI=false react-scripts build",
34+
"build2": "react-scripts build",
3435
"test": "react-scripts test",
3536
"eject": "react-scripts eject"
3637
},

0 commit comments

Comments
 (0)