Skip to content

Commit 0dc1ddc

Browse files
webapi only
1 parent bdf22aa commit 0dc1ddc

187 files changed

Lines changed: 69 additions & 19908 deletions

File tree

Some content is hidden

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

.github/workflows/deploy-dotnetapp.yml

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

.github/workflows/main_farmconnect.yml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up .NET Core
2222
uses: actions/setup-dotnet@v4
2323
with:
24-
dotnet-version: '8.x'
24+
dotnet-version: "8.x"
2525

2626
- name: Build with dotnet
2727
run: dotnet build --configuration Release
@@ -38,29 +38,28 @@ jobs:
3838
deploy:
3939
runs-on: windows-latest
4040
needs: build
41-
42-
permissions:
43-
id-token: write #This is required for requesting the JWT
44-
contents: read #This is required for actions/checkout
41+
42+
permissions:
43+
id-token: write #This is required for requesting the JWT
44+
contents: read #This is required for actions/checkout
4545

4646
steps:
4747
- name: Download artifact from build job
4848
uses: actions/download-artifact@v4
4949
with:
5050
name: .net-app
51-
52-
- name: Login to Azure
53-
uses: azure/login@v2
54-
with:
55-
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_395AB8640C5F4BC5BF985FADE2A1B2D8 }}
56-
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_9265B36638B742ABB1223B32D2F1BFE0 }}
57-
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_320E76BCBE5B4644961964CC8A3A91BB }}
51+
52+
- name: Login to Azure
53+
uses: azure/login@v2
54+
with:
55+
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_395AB8640C5F4BC5BF985FADE2A1B2D8 }}
56+
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_9265B36638B742ABB1223B32D2F1BFE0 }}
57+
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_320E76BCBE5B4644961964CC8A3A91BB }}
5858

5959
- name: Deploy to Azure Web App
6060
id: deploy-to-webapp
6161
uses: azure/webapps-deploy@v3
6262
with:
63-
app-name: 'FarmConnect'
64-
slot-name: 'Production'
63+
app-name: "FarmConnect"
64+
slot-name: "Production"
6565
package: .
66-

.gitignore

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,49 @@ obj
55
TestProject
66
.vscode
77
Migrations
8-
dotnetapp/appsettings.json
8+
9+
# compiled output
10+
/dist
11+
/tmp
12+
/out-tsc
13+
# Only exists if Bazel was run
14+
/bazel-out
15+
16+
# dependencies
17+
/node_modules
18+
/package-lock.json
19+
20+
# profiling files
21+
chrome-profiler-events*.json
22+
speed-measure-plugin*.json
23+
24+
# IDEs and editors
25+
/.idea
26+
.project
27+
.classpath
28+
.c9/
29+
*.launch
30+
.settings/
31+
*.sublime-workspace
32+
33+
# IDE - VSCode
34+
.vscode/*
35+
!.vscode/settings.json
36+
!.vscode/tasks.json
37+
!.vscode/launch.json
38+
!.vscode/extensions.json
39+
.history/*
40+
41+
# misc
42+
/.sass-cache
43+
/connect.lock
44+
/coverage
45+
/libpeerconnection.log
46+
npm-debug.log
47+
yarn-error.log
48+
testem.log
49+
/typings
50+
51+
# System Files
52+
.DS_Store
53+
Thumbs.db
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)