LaunchFast Logo
Setup

Setup

This guide will walk you through setting up LaunchFast demo. We will go through the process of cloning the project, installing dependencies, setting up your database and running the local development server.

This is not the official documentation of LaunchFast. To browse how to use and set up LaunchFast, check out the official documentation.

In this guide, you will learn how to TODO. You will go through the process of TODO.

Pre

You'll need the following:

Create a new Astro application

Let’s get started by creating a new Astro project. Execute the following command:

Terminal window
npm create astro@latest my-app

npm create astro is the recommended way to scaffold an Astro project quickly.

When prompted, choose:

  • Empty when prompted on how to start the new project.
  • Yes when prompted if plan to write Typescript.
  • Strict when prompted how strict Typescript should be.
  • Yes when prompted to install dependencies.
  • Yes when prompted to initialize a git repository.

Once that’s done, you can move into the project directory and start the app:

Terminal window
cd my-app
npm run dev

The app should be running on localhost:4321.

Conclusion

In this guide, you learned how to TODO.