|
| 1 | +--- |
| 2 | +sidebar_position: 2 |
| 3 | +--- |
| 4 | + |
| 5 | +# Getting Started with Mixcore |
| 6 | + |
| 7 | +<div className="section-container"> |
| 8 | + <h2 className="section-title">Welcome to Mixcore!</h2> |
| 9 | + <p> |
| 10 | + Mixcore is an Enterprise-Grade .NET Core CMS platform that empowers developers, content creators, and businesses to build powerful applications, websites, and digital experiences. |
| 11 | + </p> |
| 12 | +</div> |
| 13 | + |
| 14 | +## Step 1: Installation |
| 15 | + |
| 16 | +<div className="callout callout--info"> |
| 17 | + <strong>Prerequisite:</strong> Make sure you have .NET 6.0 SDK or higher installed on your system. |
| 18 | +</div> |
| 19 | + |
| 20 | +You can install Mixcore in several ways: |
| 21 | + |
| 22 | +<ul className="feature-list"> |
| 23 | + <li>Docker installation (recommended for production)</li> |
| 24 | + <li>Local development environment</li> |
| 25 | + <li>Cloud hosting platforms</li> |
| 26 | +</ul> |
| 27 | + |
| 28 | +<a href="/installation-install-mixcore" className="button--primary">View Installation Guide</a> |
| 29 | + |
| 30 | +## Step 2: Create Your First Project |
| 31 | + |
| 32 | +After successfully installing Mixcore, you're ready to create your first project. |
| 33 | + |
| 34 | +<div className="section-container"> |
| 35 | + <h3 className="section-title">Quick Start Commands</h3> |
| 36 | + |
| 37 | + ```bash |
| 38 | + # Clone the repository |
| 39 | + git clone https://github.com/mixcore/mix.core.git |
| 40 | + |
| 41 | + # Navigate to the directory |
| 42 | + cd mix.core |
| 43 | + |
| 44 | + # Run the project |
| 45 | + dotnet run |
| 46 | + ``` |
| 47 | +</div> |
| 48 | + |
| 49 | +<div className="callout callout--tip"> |
| 50 | + <strong>Tip:</strong> For the best development experience, we recommend using Visual Studio 2022 or VS Code with the C# extension. |
| 51 | +</div> |
| 52 | + |
| 53 | +## Step 3: Understand Mixcore Architecture |
| 54 | + |
| 55 | +<div className="section-container"> |
| 56 | + <p> |
| 57 | + Mixcore follows a modular architecture that allows for flexibility and scalability. The key components include: |
| 58 | + </p> |
| 59 | + |
| 60 | + <ul className="feature-list"> |
| 61 | + <li>Core CMS Engine</li> |
| 62 | + <li>API Layer</li> |
| 63 | + <li>Database Abstraction</li> |
| 64 | + <li>Theme System</li> |
| 65 | + <li>Plugin Architecture</li> |
| 66 | + </ul> |
| 67 | +</div> |
| 68 | + |
| 69 | +<div className="callout callout--warning"> |
| 70 | + <strong>Note:</strong> Understanding the architecture is crucial for developing custom modules and themes. |
| 71 | +</div> |
| 72 | + |
| 73 | +## Step 4: Explore Advanced Features |
| 74 | + |
| 75 | +Mixcore comes with many powerful features out of the box: |
| 76 | + |
| 77 | +<div className="section-container"> |
| 78 | + <h3 className="section-title">Key Features</h3> |
| 79 | + |
| 80 | + <ul className="feature-list"> |
| 81 | + <li>Headless CMS capabilities</li> |
| 82 | + <li>Multi-site management</li> |
| 83 | + <li>Advanced content modeling</li> |
| 84 | + <li>User and role management</li> |
| 85 | + <li>Responsive design</li> |
| 86 | + <li>RESTful API</li> |
| 87 | + <li>Multi-language support</li> |
| 88 | + </ul> |
| 89 | +</div> |
| 90 | + |
| 91 | +## Learn More |
| 92 | + |
| 93 | +<div className="section-container"> |
| 94 | + <p>Ready to dive deeper? Check out these resources:</p> |
| 95 | + |
| 96 | + <div style={{ display: 'flex', gap: '1rem', marginTop: '1rem' }}> |
| 97 | + <a href="/dev-getting-started" className="button--primary">Developer Guide</a> |
| 98 | + <a href="/admin-guide" className="button--secondary">Admin Guide</a> |
| 99 | + <a href="/content-editor-guide" className="button--secondary">Content Editor Guide</a> |
| 100 | + </div> |
| 101 | +</div> |
| 102 | + |
| 103 | +<div className="callout callout--info" style={{ marginTop: '2rem' }}> |
| 104 | + <strong>Community Support:</strong> Join our <a href="https://github.com/orgs/mixcore/discussions">GitHub Discussions</a> to connect with the community and get help. |
| 105 | +</div> |
| 106 | + |
| 107 | +<div style={{ textAlign: 'center', margin: '3rem 0 1rem' }}> |
| 108 | + <p>Current Mixcore Version <span className="version-badge">7.0</span></p> |
| 109 | +</div> |
0 commit comments