Skip to content

Commit

Permalink
Updating vars
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenPelin committed Feb 21, 2020
1 parent ea0a593 commit e420814
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/01-Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ This project assumes the following settings:

| Setting | Value | Change in <sup>1 *see below*</sup> |
| --- | --- | --- |
| Source location | C:\projects\Habitat\ | `Habitat.Dev.config` |
| Source location | C:\Habitat\ | `Habitat.Dev.config` |
| Website location | C:\inetpub\wwwroot\habitat.dev.local\ | `gulp-config.js`, `settings.ps1`, `xconnect-XP0.json`, `sitecore-XP0.json` |
| Website URL | [https://habitat.dev.local/](https://habitat.dev.local/) | `publishsettings.targets`, `settings.ps1`, `Habitat.Website.config` |
| SQL Server | . | `settings.ps1` |
| SQL Server Admin | sa | `settings.ps1` |
| SQL Server Password | 12345 | `settings.ps1` |
| SOLR Location | C:\solr\solr-7.5.0 | `settings.ps1` |
| SOLR URL | [https://solr750:8750/solr](https://solr750:8750/solr) (*Note https*) | `settings.ps1` |
| SOLR Location | c:\etc\solr-7.5.0 | `settings.ps1` |
| SOLR URL | [https://localhost:8750/solr](https://localhost:8750/solr) (*Note https*) | `settings.ps1` |
| SOLR Windows Service Name | Solr-7.5.0 | `settings.ps1` |

<sup>1</sup> Files referred are:
Expand Down Expand Up @@ -153,4 +153,4 @@ Habitat demonstrates utilizing the Federated Authentication features of Sitecore
1. Use IIS to add an SSL certificate and binding to your Habitat site (required by Facebook).
1. [Register a Facebook App](https://developers.facebook.com/docs/apps/register/) using a Facebook Developer Account.
1. Add the domain under which you are running Habitat to the *App Domains* setting of your Facebook App. By default this is `habitat.dev.local`.
1. Use the *App ID* and *App Secret* from your app settings to populate the `Sitecore.Feature.Accounts.Facebook.AppId` and `Sitecore.Feature.Accounts.Facebook.AppSecret` settings, by default found in `Feature\Accounts\code\App_Config\Include\Feature\Feature.Accounts.config`.
1. Use the *App ID* and *App Secret* from your app settings to populate the `Sitecore.Feature.Accounts.Facebook.AppId` and `Sitecore.Feature.Accounts.Facebook.AppSecret` settings, by default found in `Feature\Accounts\code\App_Config\Include\Feature\Feature.Accounts.config`.
4 changes: 2 additions & 2 deletions settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ $IdentityAllowedCorsOrigins = $SitecoreSiteUrl
$IdentityServerSiteRoot = Join-Path $webroot -ChildPath $IdentityServerSiteName

# Solr Parameters
$SolrUrl = "https://solr750:8750/solr"
$SolrRoot = "C:\\solr\\solr-7.5.0"
$SolrUrl = "https://localhost:8750/solr"
$SolrRoot = "c:\\etc\\solr-7.5.0"
$SolrService = "Solr-7.5.0"
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
</site>
<site name="Habitat.Article" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Projects\Habitat\src\Domain\Article" />
<virtualDirectory path="/" physicalPath="C:\Habitat\src\Domain\Article" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:59548:localhost" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:role="http://www.sitecore.net/xmlconfig/role/">
<sitecore>
<sc.variable name="sourceFolder" value="C:\projects\Habitat\src" />
<sc.variable name="sourceFolder" value="C:\Habitat\src" />
<sites role:require="Standalone">
<site name="habitat">
<patch:attribute name="database">master</patch:attribute>
Expand All @@ -11,4 +11,4 @@
</sitecore>
</configuration>

<!-- test -->
<!-- test -->

0 comments on commit e420814

Please sign in to comment.