Skip to content

Create a .net website with skinny controllers, ddd, and mvc, business logic and data layering

Notifications You must be signed in to change notification settings

propelledahead/Umbrella

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Umbrella

Create a .net website with skinny controllers, ddd, and mvc, business logic and data layering

appsettings.json

{
    "Environment": "production",
    "ConnectionStrings": {
        "DefaultDNS": "Server=serverdnsname; Database=mydatabase; User ID=myuserid; Password=mypassword; Max Pool Size=1000;",
        "DefaultIP": "Server=serveripaddress; Database=mydatabase; User ID=myuserid; Password=mypassword; Max Pool Size=1000;"
    },
    "Logging": {
        "LogLevel": {
            "Default": "Information",
            "Microsoft": "Warning",
            "Microsoft.Hosting.Lifetime": "Information"
        }
    },
    "AllowedHosts": "*"

}

appsettings.development.json

{
    "Environment": "production",
    "ConnectionStrings": {
        "DefaultDNS": "Server=serverdnsname; Database=mydatabase; User ID=myuserid; Password=mypassword; Max Pool Size=1000;",
        "DefaultIP": "Server=serveripaddress; Database=mydatabase; User ID=myuserid; Password=mypassword; Max Pool Size=1000;"
    },
    "Logging": {
        "LogLevel": {
            "Default": "Information",
            "Microsoft": "Warning",
            "Microsoft.Hosting.Lifetime": "Information"
        }
    },
    "AllowedHosts": "*"

}

About

Create a .net website with skinny controllers, ddd, and mvc, business logic and data layering

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages