Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.49 KB

README.md

File metadata and controls

48 lines (32 loc) · 1.49 KB

My Teletouch

Wiki pages

  1. DataModel.md
  2. SSL.md

Table of Contents

  1. Security
  2. Internationalization

Security

We will store all configuration in external files.

Our need to have Security/AppSettingsSecrets.config.

<appSettings> 

</appSettings>

Sources:

  1. Best practices for deploying passwords and other sensitive data to ASP.NET and Azure App Service

⬆ back to top

Internationalization

Sources:

  1. ASP.NET MVC 5 Internationalization

⬆ back to top

Migrations

enable-migrations -ContextProjectName MyTeletouch.DBContexts -contexttypename MyTeletouch.DBContexts.ApplicationDbContext -Verbose
# Rollback all migrations
update-database -target:0

Sources:

  1. Code First Migrations and Deployment with the Entity Framework in an ASP.NET MVC Application
  2. Enable Migrations with Context in Separate Assembly?