-
-
Notifications
You must be signed in to change notification settings - Fork 211
Quick Start
Huy Nguyen edited this page Apr 5, 2025
·
2 revisions
This guide will help you get started with Mixcore CMS quickly. We'll cover the basic setup and create your first application.
- .NET 9.0 SDK
- Docker (optional, for containerized deployment)
- Git
- A code editor (Visual Studio, VS Code, or Rider recommended)
-
Clone the repository:
git clone https://github.com/mixcore/mix.core.git cd mix.core
-
Restore dependencies:
dotnet restore
-
Build the solution:
dotnet build
-
Start the development server:
dotnet run --project src/applications/mix.spa.portal
-
Open your browser and navigate to:
http://localhost:5000
-
Create a new application using the Mixcore CLI:
dotnet new mixcore-app -n MyFirstApp
-
Navigate to your new application:
cd MyFirstApp
-
Add the application to the solution:
dotnet sln add MyFirstApp/MyFirstApp.csproj
-
Build and run your application:
dotnet build dotnet run --project MyFirstApp
-
Open
appsettings.json
in your application:{ "ConnectionStrings": { "DefaultConnection": "Server=localhost;Database=mixcore;Trusted_Connection=True;" }, "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information" } } }
-
Configure your database connection string according to your environment.
- Visit our Community Forum
- Check the Troubleshooting Guide
- Contact Support for enterprise assistance