NETCORESAAS
  • Welcome
  • Getting Started
    • Getting started
      • Frontend
      • Backend + Frontend
    • Deploy
      • Initialize git repository
      • Deploy to heroku
    • Environment variables
    • API
      • Controllers
    • Testing
      • Integration Tests
  • Other
    • Installing
      • 1. Install VSCode
      • 2. Install .NET Core SDK
      • 3. Install Node.js
      • 4. Test installation
    • Integrations
      • Stripe
        • Subscription Options
        • Getting the API Keys
        • Creating Stripe Products
        • Creating the Customer Portal
      • Email
        • SMTP
        • Postmark
      • Social Login
        • Google Sign In
      • Conversations
        • Intercom
        • Drift
  • Blog
Powered by GitBook
On this page
  • 1. Disable automatic database creation
  • 2. Run the app
  • 3. Enable automatic database creation
  • 4. All set

Was this helpful?

  1. Other
  2. Installing

4. Test installation

Previous3. Install Node.jsNextIntegrations

Last updated 4 years ago

Was this helpful?

1. Disable automatic database creation

If you haven't set your connection settings, open the Data/SystemDbContext.cs and Data/AppDbContext.cs files and comment the following line:

// Database.EnsureCreated();

2. Run the app

Open the terminal at the root directory:

$ dotnet run

Open

3. Enable automatic database creation

Uncomment the lines mentioned in step 1.

4. All set

You're ready to configure your app:

http://localhost:8080