-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from Sitecore/basic-company-nextjs
Next.js Implementation of Helix Basic Company
- Loading branch information
Showing
369 changed files
with
83,829 additions
and
86 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"sitecore.cli": { | ||
"version": "3.0.0-r00259.1", | ||
"commands": [ | ||
"sitecore" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# folders | ||
.git | ||
.gitignore | ||
.vs | ||
.vscode | ||
build | ||
docker | ||
packages | ||
**/bin/ | ||
**/obj/ | ||
**/out/ | ||
**/node_modules/ | ||
|
||
# files | ||
*Dockerfile | ||
docker-compose* | ||
**/*.md | ||
*.ps1 | ||
scjssconfig.json |
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# If you intend to push to a private registry, fill that in here. | ||
REGISTRY= | ||
COMPOSE_PROJECT_NAME=basic-company-nextjs | ||
|
||
# Configure host names, which will be used to configure Traefik proxy routing. | ||
CM_HOST=cm.basic-company-nextjs.localhost | ||
ID_HOST=id.basic-company-nextjs.localhost | ||
RENDERING_HOST=www.basic-company-nextjs.localhost | ||
|
||
# Sitecore Docker registry and platform version. | ||
# The ltsc2019-based images are used by default here. SAC images are also available. | ||
SITECORE_DOCKER_REGISTRY=scr.sitecore.com/sxp/ | ||
SITECORE_VERSION=10.1-ltsc2019 | ||
|
||
# The sitecore\admin and SQL 'sa' account passwords for this environment are configurable here. | ||
SITECORE_ADMIN_PASSWORD= | ||
SQL_SA_PASSWORD= | ||
|
||
# Other supporting images, including Sitecore modules and Docker tools | ||
MANAGEMENT_SERVICES_IMAGE=scr.sitecore.com/sxp/modules/sitecore-management-services-xp1-assets:3.0.0-1809 | ||
HEADLESS_SERVICES_IMAGE=scr.sitecore.com/sxp/modules/sitecore-headless-services-xp1-assets:16.0.0-1809 | ||
TOOLS_IMAGE=scr.sitecore.com/tools/sitecore-docker-tools-assets:10.1-1809 | ||
TRAEFIK_IMAGE=traefik:v2.2.0-windowsservercore-1809 | ||
|
||
# Windows and Node.js version for JSS | ||
NODEJS_PARENT_IMAGE=mcr.microsoft.com/windows/nanoserver:1809 | ||
NODEJS_VERSION=14.15.3 | ||
|
||
# MSBuild configuration and the target build stage for the Rendering Host image. | ||
BUILD_CONFIGURATION=debug | ||
|
||
# Prefix for Solr cores used with Sitecore Content Search | ||
SOLR_CORE_PREFIX_NAME=sitecore | ||
|
||
# JSS deployment secret, should also be in the scjssconfig.json | ||
JSS_BasicCompany_DEPLOYMENT_SECRET=dd5d764c4776459e92e1233b8cde0ab5 | ||
|
||
# JSS editing secret, should be provided to CM and the Next.js Rendering Host | ||
JSS_EDITING_SECRET= | ||
|
||
# Mount paths for code deployment, data persistence, and your Sitecore license. | ||
LOCAL_DEPLOY_PATH=.\docker\deploy\ | ||
LOCAL_DATA_PATH=.\docker\data\ | ||
HOST_LICENSE_FOLDER= | ||
|
||
# Because we are using a mounted license file, this value can be empty. | ||
# Included here to suppress 'variable is not set' warning from docker-compose. | ||
SITECORE_LICENSE= | ||
|
||
# The isolation mode for Sitecore containers. | ||
# Compatibility of isolation mode depends on the Host and Container OS versions. | ||
ISOLATION=default | ||
TRAEFIK_ISOLATION=hyperv | ||
|
||
# Generated keys and certificates for your environment. | ||
REPORTING_API_KEY= | ||
SITECORE_IDSECRET= | ||
TELERIK_ENCRYPTION_KEY= | ||
SITECORE_ID_CERTIFICATE= | ||
SITECORE_ID_CERTIFICATE_PASSWORD= | ||
MEDIA_REQUEST_PROTECTION_SHARED_SECRET= |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# may contain OAuth secrets, do not commit | ||
.sitecore/user.json | ||
|
||
# NuGet cache for Sitecore CLI | ||
.sitecore/package-cache/ | ||
|
||
# Ephemeral index caches used by serialization, do not commit | ||
.scindex | ||
|
||
# Don't commit packages | ||
*.itempackage | ||
*.sicpackage | ||
|
||
#Ignore thumbnails created by Windows | ||
Thumbs.db | ||
#Ignore files built by Visual Studio | ||
*.obj | ||
*.exe | ||
*.pdb | ||
*.user | ||
*.aps | ||
*.pch | ||
*.vspscc | ||
*_i.c | ||
*_p.c | ||
*.ncb | ||
*.suo | ||
*.tlb | ||
*.tlh | ||
*.bak | ||
*.cache | ||
*.ilk | ||
*.log | ||
[Bb]in | ||
[Dd]ebug*/ | ||
*.lib | ||
*.sbr | ||
obj/ | ||
[Rr]elease*/ | ||
_ReSharper*/ | ||
[Tt]est[Rr]esult* | ||
.vs/ | ||
#Nuget packages folder | ||
packages/ |
Oops, something went wrong.