Skip to content

Commit

Permalink
VP-2272 fix instruction for platform v3 (#422)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrey Kozlov <[email protected]>
  • Loading branch information
AliveMen and yecli authored Jul 29, 2020
1 parent 952dda4 commit 36a4f3a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,24 @@ Read more about how to generate API keys [here](https://virtocommerce.com/docs/v
}
...
```
For platform v3
```
...
"Endpoint": {
//Specify platform url
"Url": "https://localhost:5001",
//Comment the following settings
//"AppId": "...",
//"SecretKey":"...",
//Uncomment the following settings
"UserName": "admin",
"Password": "store",
"RequestTimeout": "0:0:30"
},
...
```

ASP.NET Core represents a new tools a **Secret Manager tool**, which allows in development to keep secrets out of your code.
You can find more about them [here](https://docs.microsoft.com/en-us/aspnet/core/security/app-secrets?tabs=visual-studio)

Expand All @@ -124,6 +142,12 @@ You can set this connection string in one of the following ways:
```
mklink /d C:\vc-storefront-core\VirtoCommerce.Storefront\wwwroot\cms-content C:\vc-platform\VirtoCommerce.Platform.Web\App_Data\cms-content
```
For platform v3 cms-content folder moved to wwwroot directory
```
mklink /d C:\vc-storefront-core\VirtoCommerce.Storefront\wwwroot\cms-content C:\vc-platform\VirtoCommerce.Platform.Web\wwwroot\cms-content
```


2. If you did not install sample data with your platform, you need to create new store in platform manager and download themes as it described in this article
[Theme development](https://virtocommerce.com/docs/vc2devguide/working-with-storefront/theme-development)

Expand Down

0 comments on commit 36a4f3a

Please sign in to comment.