Getting started with Astroship
Astroship is designed to get you up and running quickly so you can onboard your first customers. Building on best practices and patterns, Astroship serves as a foundation for your project to grow.
This documentation will guide you through:
- Setting up your project for development
- Configuring, extending, and customizing Astroship for your project
- Deploying your project
Quick Start
1. Create a new project
# Clone the repositorygit clone git@github.com:astroship-ai/kit.git <project-name>cd <project-name>
# Rename repository origin for future Astroship updatesgit remote rename origin astroship
# Create a new empty repository on GitHub and add it as the origingit remote add origin <your-repository-url>git push -u origin main
2. Install packages
npm install --include=dev
3. Start the development server
npm run dev
The development server should now be accessible at: http://localhost:4321 ↗
Congratulations! You have successfully set up your project with Astroship. 🚀