Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Getting Started

Doguhan Uluca edited this page Jul 8, 2013 · 6 revisions

Got questions/feedback/issues? Please help us make Lean better by creating new issues and sending us feedback.

Some configuration is required, follow these steps:

  1. Enable NuGet Package Restore for the Solution.

  2. Create a ConnectionStrings.config file in the Web project folder, do not add it to the project. This will never get committed to your repository, which will allow every developer to have their own data stores.

    Sample connection string for the boilerplate: <connectionStrings> <add name="LeanEntities" connectionString="Data Source=LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\ExcellaLean.mdf; Integrated Security=True" providerName="System.Data.SqlClient" /> </connectionStrings>

  3. Enable Windows Authentication in IIS, disable Anonymous Authentication.

  4. Enable security in Web.config.

  5. Make sure URL has a trailing slash: e.g. http://localhost/ExcellaLean/.

  6. Observe error logs here: http://localhost/ExcellaLean/elmah.axd.

Clone this wiki locally