Skip to main content

Setup Guide

This guide will walk you through the process of setting up your Studio environment.

Prerequisites

Before you begin, ensure you have the following:

  • Node.js (v18 or higher)
  • npm or yarn package manager
  • Git
  • Access to the required repositories
  • Required environment variables

Installation Steps

  1. Clone the repository
  2. Install dependencies
  3. Configure environment variables
  4. Initialize the database
  5. Start the development server

Configuration

Environment Variables

Create a .env file in the root directory with the following variables:

DATABASE_URL=your_database_url
API_KEY=your_api_key
ENVIRONMENT=development

Database Setup

Follow these steps to set up your database:

  1. Create a new database
  2. Run migrations
  3. Seed initial data

Verification

To verify your setup:

  1. Run the test suite
  2. Check the health endpoint
  3. Verify database connections

Troubleshooting

Common issues and their solutions:

note

If you encounter any issues during setup, check the logs in the logs directory.

Next Steps

Once your setup is complete, proceed to the Before You Begin guide.