You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docs don't describe or explain many of the necessary tasks to actually get this app deployed and running in a real environment. For example:
You need to find a secure storage solution for your IdentityServer certificate, and make changes to ServiceCollectionExtensions.cs to implement it. Without this you will get a runtime error, not finding the temp dev rsa key. .AddDeveloperSigningCredential(); // not recommended for production - you need to store your key material somewhere secure
The app won't run without the SampleData sql, and it's ignored by git. No guidance on how to resolve this or how to replace with your own product data. I had to comment out the .gitignore file in the sample data directory.
Home page, when deployed, gives users the Admin username and Password, and link to Dashboard. This should be mentioned in the docs!!! This widget needs to be deleted in the Admin site immediately upon deployment, and you need to create a new Admin user for yourself, and delete the default one.
Home page also allows users to delete all data and load SampleData. Again all of this should be explained in the Getting Started or Developers guide in the docs, but I could find no mention of these required steps to get the app running.
A new install for culture of en-US results in only one of the 50 US states configured, Washington state. I don't know why all the states are not loaded, but there should be something in the docs on how to enable the other states.
I would be happy to contribute to the documentation, just tell me the best way (fork the repo, then create a PR?), and I can assist.
The text was updated successfully, but these errors were encountered:
The docs don't describe or explain many of the necessary tasks to actually get this app deployed and running in a real environment. For example:
ServiceCollectionExtensions.cs
to implement it. Without this you will get a runtime error, not finding the temp dev rsa key..AddDeveloperSigningCredential(); // not recommended for production - you need to store your key material somewhere secure
I would be happy to contribute to the documentation, just tell me the best way (fork the repo, then create a PR?), and I can assist.
The text was updated successfully, but these errors were encountered: