Skip to content

Getting Started

· 4 min

This post outlines the essential steps to quickly set up your personal website using the Astro AntfuStyle Theme. Each step may involve more detailed content, requiring you to consult other posts for further information.

Preparation (Skip If You’re a Developer)#

To build your website with this theme, it’s recommended to:

These are ideal conditions, but feel free to substitute with tools you’re comfortable with.

Create Your Project#

Create your project from the latest theme version in two ways:

Use GitHub

Create a new repository in your GitHub account by clicking “Use this template” (without commit history) or “Fork” (preserves commit history) , then clone it locally:

Terminal window
# If SSH is not configured
git clone https://github.com/[YOUR_USERNAME]/[YOUR_REPO_NAME].git
# If SSH is configured
git clone git@github.com:[YOUR_USERNAME]/[YOUR_REPO_NAME].git

Use CLI

Run the following commands in your desired directory to start locally:

Terminal window
# npm 6.x
npm create astro@latest --template lin-stephanie/astro-antfustyle-theme
# npm 7+, extra double-dash is needed
npm create astro@latest -- --template lin-stephanie/astro-antfustyle-theme
# yarn
yarn create astro --template lin-stephanie/astro-antfustyle-theme
# pnpm
pnpm dlx create-astro --template lin-stephanie/astro-antfustyle-theme
If you prefer not to use Git, you can download the ZIP file, extract it, and work directly in your local directory.

Launch the Project#

Start the project by running the following commands from the project root (replace pnpm with your preferred package manager if needed):

Terminal window
# Install dependencies
pnpm install
# Start the local dev server (opens at 'http://localhost:4321')
pnpm dev

You can explore the current theme freely. Additionally, the following commands are available:

CommandDescription
pnpm installInstalls dependencies
pnpm devStarts a local development server at localhost:4321 and opens the site in your browser
pnpm syncGenerates TypeScript types for Astro modules. Learn more
pnpm checkRuns diagnostics against your project and reports errors to the console
pnpm buildBuild your production site to ./dist/
pnpm previewPreview your build locally, before deploying
pnpm formatCheck code format with Prettier
pnpm format:writeFormat code with Prettier
pnpm lintCheck code lint with ESLint
pnpm lint:fixLint code with ESLint
pnpm astro --helpGet help using the Astro CLI
pnpm toolbar:on
pnpm toolbar:off
Enable or disable the Astro Dev Toolbar

Here’s the translated document based on your requirements and guidelines:

==【加链接】==

This project uses pnpm as the package manager, so you’ll need to install it if you haven’t yet.

You can execute npm install -g pnpm to install pnpm globally. Alternatively, you can enable corepack (allows you to manage package manager versions directly via Node.js) or install the ni tool (simplifies running commands across different package managers).

If you want to use a different package manager, make sure to ==convert the project to your chosen package manager== before running its commands.

Configure the Project#

Before configuring, it is advisable to review ==“Project Structure”== for an overview of the project and how it’s organized.

Configuration can be done in two steps:

==【加链接】==

Authoring Content#

Once configured, ensure the project is running correctly in your browser, then start creating or migrating your content. Jump to the section you’re interested in:

==【加链接】==

Deploy Your Project#

Refer to Astro’s Deployment Guide to choose your preferred platform and follow its guide. Ensure the SITE.website option in the src/config.ts is correctly set before deploying!

If you aren’t using GitHub and any other Git provider for deployment, follow the CLI Deployment Guide to deploy without a Git repository, such as using Vercel CLI or Netlify CLI.

Sync Updates#

Like other open-source projects, this theme evolves with bug fixes and feature updates. It’s crucial to sync these updates with your own customized project. Consult ==“Sync Update”== for more details.

Check the ==Changelog== or Releases to stay informed about theme updates, or consider subscribing to the theme’s ==RSS== feed.

Next Steps#

You can dive deeper into the theme through the following sections:

==【加链接】==

Additionally, feel free to explore the theme’s ==tech stack==. For parts not mentioned or clarified in the guide, you might find answers in the Astro Docs. You can also follow the Astro Blog or join the Astro Lounge community.

Wrapping Up#

Congratulations on completing the setup! Hopefully, this theme meets your blogging or portfolio needs.

If you encounter any issues, find errors, or see opportunities for improvement, feel free to join the discussion or submit an issue or pull request. Your feedback is invaluable to making this theme even better!

Thank you for taking the time to read this guide. ❤️

> share on twitter / mastodon
> cd ..