Quick Setup
Get your Minecraft server homepage running in under 5 minutes.
Install Dependencies
Open your terminal, navigate to the template folder, and run:
npm installThis downloads all the required packages. Takes about 30 seconds.
Configure Your Server
Open src/config/site.config.ts in any text editor. Find the server section at the top:
server: {
name: 'YourServerName',
tagline: 'Your epic tagline here',
description: 'A longer description of your server...',
ip: 'play.yourserver.com',
version: '1.20.4',
port: 25565,
}Replace the values with your server's information. Save the file.
Start Development Server
Run the development server to see your changes live:
npm run devOpen http://localhost:3000 in your browser. You'll see your homepage with your server name.
Build for Production
When you're happy with your site, build it for production:
npm run buildThis creates an out folder with static HTML, CSS, and JS files. Upload this folder to any web host.
Common Commands
npm installInstall all dependencies
npm run devStart development server
npm run buildBuild for production
out/Production files location
Next Steps
- Learn about the project structure
- Customize your theme colors
- Configure page sections
- Set up deployment