Getting Started
Installation
Setting up BuyAstro templates is straightforward. Follow these steps to install and configure everything you need.
Prerequisites
Ensure you have Node.js v16.12.0 or higher and a code editor ready before you start.
npm install
Once the dependencies are installed, you’re ready to start working with the template.
Common Commands
Here are some essential commands to help you develop, build, and deploy your project:
Start Development Server
This command starts a local development server at http://localhost:3000
.
npm run dev
Build for Production
Build your production-ready site to the ./dist/
folder.
npm run build
Preview Build Locally
Use this command to preview your build locally before deployment.
npm run preview
Run Astro Commands
This command allows you to run various Astro CLI commands like astro add
and astro check
.
npm run astro
Get Help with Astro CLI
Use this command to get help and see available options for the Astro CLI.
npm run astro --help
For more details about Astro commands, visit the
Astro documentation