Skip to Content
DocumentationGetting StartedπŸš€ Quick Start Guide

πŸš€ Quick Start Guide

Get Loopstack running in under 3 minutes.

Prerequisites

  • Node.js 18.0+
  • Docker
  • Git

Setup

Step 1: Install

npx create-loopstack-app my-project

Step 2: Start Environment

cd my-project docker compose up -d

Step 3: Run your app

npm run start:dev

πŸŽ‰ Congratulations, your application is now running at:

http://localhost:3000Β 

Additional Setup options

API Keys

To use LLM functionality, edit your local .env file and add API keys (OpenAI, Anthropic, etc.) as needed

OPENAI_API_KEY=your_openai_api_key

Running from Source (Frontend)

1. Clone the repository

git clone https://github.com/loopstack-ai/loopstack-studio.git

2. Install dependencies

cd loopstack-studio npm install

3. Start the frontend

npm run dev
Last updated on