Getting Started
Quick Start
Get your BuyAstro template up and running in minutes by following these steps to install, edit, and deploy directly to Vercel.
Prerequisites
Step 1: Install Dependencies
Start by downloading your BuyAstro template ZIP file, extracting it, and installing the necessary dependencies.
-
Download the ZIP file
Download the BuyAstro template from your user account on the BuyAstro website. -
Extract the ZIP file
Extract the ZIP file to your preferred project directory. -
Navigate to the project directory
Open your terminal and move into the extracted project folder:
cd buyastro-template
- Install dependencies
Run the following command to install all necessary dependencies:
npm install
Step 2: Edit Your Template
After installing the dependencies, open your project in a text editor like VS Code to start making customizations.
-
Update content
Modify the Markdown or component files located in thesrc/content
directory to add your own content, such as text, images, or new pages. -
Customize styles
To personalize the design, you can edit the Tailwind CSS configuration intailwind.config.js
to change things like colors, fonts, and spacing.
Tip
Step 3: Deploy to Vercel
When you’re ready to deploy your customized template, follow these steps to deploy your site to Vercel.
- Login to Vercel
Use the Vercel CLI to log in if you don’t already have an account:
vercel login
- Deploy your site
Deploy your site by running the following command in your terminal from the root directory of your project:
vercel
- Set up project settings
Vercel will guide you through creating or linking to an existing project. Once the build is complete, Vercel will provide you with a live URL where your site is hosted.