-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Kentico:main' into fix/add-request-localization-middleware
- Loading branch information
Showing
7 changed files
with
76 additions
and
106 deletions.
There are no files selected for viewing
This file contains 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,17 +1,6 @@ | ||
name: "CI: Build and Test" | ||
|
||
on: | ||
# Disabled for now since the deploy.yml also does a build and almost all updates come through PRs | ||
# We don't need to duplicate the build once a PR merges | ||
# push: | ||
# branches: [main] | ||
# paths: | ||
# - "**.cs" | ||
# - "**.csproj" | ||
# - "**.props" | ||
# - "**.targets" | ||
# - "**.sln" | ||
# - "**.ps1" | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
|
@@ -94,7 +83,7 @@ jobs: | |
-DestinationPath "./database" | ||
- name: Install a SQL Server suite of tools (SQLEngine, SQLPackage) | ||
uses: potatoqualitee/[email protected] | ||
uses: potatoqualitee/mssqlsuite@9a0136e208df60b8ecb62909f076bc34854fa55a # set as a commit hash for security - v1.7 | ||
with: | ||
install: sqlpackage, sqlengine | ||
sa-password: Pass@12345 | ||
|
This file contains 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 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,5 +1,44 @@ | ||
{ | ||
"ConnectionStrings": { | ||
"CMSConnectionString": "Data Source=localhost;Initial Catalog=Kentico.Community;User Id=sa;Password=Pass@12345;Persist Security Info=False;Connect Timeout=10;Encrypt=False;Current Language=English;TrustServerCertificate=True;" | ||
}, | ||
|
||
"CMSHashStringSalt": "hash-string-salt", | ||
|
||
"CMSAdminSettings": { | ||
"Authentication": { | ||
"Identity": { | ||
"AzureAD": { | ||
"Domain": "ci-domain.onmicrosoft.com", | ||
"TenantId": "ci-tenant-id", | ||
"ClientId": "ci-client-id", | ||
"Instance": "https://login.microsoftonline.com/", | ||
"CallbackPath": "/admin-oidc" | ||
} | ||
} | ||
} | ||
}, | ||
|
||
"CMSSendGrid": { | ||
"ApiKey": "<placeholder>" | ||
}, | ||
|
||
"Kentico.Xperience.Lucene.Custom": { | ||
"WebCrawlerBaseUrl": "https://localhost:45039" | ||
}, | ||
|
||
"ReCaptcha": { | ||
"SiteKey": "6LfJIt0ZAAAAADy4LwyLOjqH0Fynf85tX5o9HF-5", | ||
"SecretKey": "test-secret", | ||
"ScoreThreshold": 0, | ||
"IsValidationDisabled": true | ||
}, | ||
|
||
"Cache": { | ||
"Query": { | ||
"IsEnabled": true, | ||
"IsSlidingExpiration": false, | ||
"CacheItemDuration": 1 | ||
} | ||
} | ||
} |
This file contains 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 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 |
---|---|---|
|
@@ -14,60 +14,6 @@ | |
}, | ||
"AllowedHosts": "*", | ||
|
||
"ConnectionStrings": { | ||
"CMSConnectionString": "" | ||
}, | ||
|
||
"CMSHashStringSalt": "<Generate a GUID>", | ||
|
||
"xperience.lucene": { | ||
"WebCrawlerBaseUrl": "https://community.kentico.com/" | ||
}, | ||
|
||
"MicrosoftDynamics": { | ||
"Url": "<https://url.com>", | ||
"SupportCasesDirectory": "SupportCases", | ||
"ProcessedCasesDirectory": "Processed" | ||
}, | ||
|
||
"GoogleTagManager": { | ||
"Code": "<code>" | ||
}, | ||
|
||
"ReCaptcha": { | ||
"SiteKey": "test-key", | ||
"SecretKey": "test-secret", | ||
"ScoreThreshold": 0.5 | ||
}, | ||
|
||
"CMSSendGrid": { | ||
"ApiKey": "<placeholder>" | ||
}, | ||
|
||
"Cache": { | ||
"Query": { | ||
"IsEnabled": true, | ||
"IsSlidingExpiration": false, | ||
"CacheItemDuration": 5 | ||
} | ||
}, | ||
|
||
"DefaultSenderAddress": "[email protected]", | ||
|
||
"CMSAdminSettings": { | ||
"Authentication": { | ||
"Identity": { | ||
"AzureAD": { | ||
"Domain": "<your domain>", | ||
"TenantId": "<tenant-id>", | ||
"ClientId": "<client-id>", | ||
"Instance": "https://login.microsoftonline.com/", | ||
"CallbackPath": "/admin-oidc" | ||
} | ||
} | ||
} | ||
}, | ||
|
||
"Vite": { | ||
"Base": "dist/", | ||
"Manifest": "manifest.json" | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.