Getting Started

This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.

Prerequisites

In olap-app file type !

  • npm
    npm install

In olap-api file change databas name in connection string !

  • Conection string example
    "ConnectionString": "server=localhost\\SQLEXPRESS;database=olap;Password=;Trusted_Connection=true;TrustServerCertificate=true"

Then add migration !

  • Create migration command
    Add-Migration "migration name"

For running seeder !

  • Run seeder command
    dotnet run seeddata

And final step update database !

  • Database update comman
    Update-Database