Prerequisites

Before you begin, ensure you have the following installed on your system:

  • Node.js (version 18.0.0 or higher)
  • pnpm (version 8.0.0 or higher)
  • Git

Quick Start

  1. Clone the repository:
git clone [email protected]:lorenzpfei/launchit-template.git my-project
  1. Navigate to the project directory:
cd my-project
  1. Install dependencies:
pnpm install
  1. Copy the example environment file:
cp .env.example .env
  1. Start the development server:
pnpm dev

Your application should now be running at http://localhost:3000.

What’s Next?

Learn how to configure your Environment variables.

Troubleshooting

If you encounter any issues during installation:

  1. Make sure you’re using the correct Node.js version
  2. Clear your pnpm cache: pnpm store prune
  3. Delete the node_modules directory and run pnpm install again