Skip to content
coreframework edited this page Sep 14, 2011 · 4 revisions
  • Download Zip installation package and unpack it.

  • Create database <your_database_name>.

  • Set environment setting value in web.config file (development, test, production):

      <appSettings>
          <add key="environment" value="development" />
      </appSettings> 
    
  • Set the same environment setting value int Build.proj file:

      <Environment Condition=" '$(Environment)' == '' ">development</Environment>
    
  • Change database connection string in Web\Config\database.yml file for the corresponding environment setting:

      development:
        platform: sqlserver
        host: database_host
        database: dev_database_name
        username: database_username
        password: database_password
    
  • Run setup.bat script in the root directory to apply database migrations.

  • Create a web application <your_application_name> in IIS (.NET v.4, Integrated Pipeline mode) mapped to Web folder.

  • Type localhost/<your_application_name> in your browser.

  • To sign in click "Sign in" link in the top-right corner of the screen.

  • Default account with admin role is admin/admin.

  • Administrative panel available at localhost/<your_application_name>/admin

  • To install modules go to "Modules" section of the administrative panel and click "Install" link of the appropriate module.

Clone this wiki locally