README, prevent a nullreferenceexception

This commit is contained in:
nicolas.dorier 2017-10-18 10:40:59 +09:00
parent d43c3dc968
commit 06a96e8b77
2 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,12 @@ Once you want to stop
docker-compose down docker-compose down
``` ```
If you want to stop, and remove all existing data
```
docker-compose down -v
```
You can run the tests inside a container by running You can run the tests inside a container by running
``` ```

View File

@ -3,6 +3,8 @@
Layout = "../Shared/_NavLayout.cshtml"; Layout = "../Shared/_NavLayout.cshtml";
ViewData["Title"] = "Create a new token"; ViewData["Title"] = "Create a new token";
ViewData.AddActivePage(StoreNavPages.Tokens); ViewData.AddActivePage(StoreNavPages.Tokens);
ViewBag.HidePublicKey = ViewBag.HidePublicKey ?? false;
ViewBag.ShowStores = ViewBag.ShowStores ?? false;
} }
<h4>@ViewData["Title"]</h4> <h4>@ViewData["Title"]</h4>