Getting Started

Get up and running with Quatrolingual in minutes. This guide will walk you through everything you need to know.

Quick Start

1

Sign Up

Create your free account to get started

2

Buy Credits

Purchase credits to access premium products

3

Download

Get your products and start building

Installation

Prerequisites

Node.js 18.0 or higher
npm or yarn package manager
Git version control

Installation Steps

1. Download your purchased template

Extract the downloaded ZIP file to your desired location

unzip template-name.zip
cd template-name

2. Install dependencies

Run the following command in your terminal

npm install

3. Start development server

Launch the development server

npm run dev

Configuration

Environment Variables

Create a .env.local file in your project root:

NEXT_PUBLIC_APP_URL=http://localhost:3000
DATABASE_URL=your_database_url
NEXTAUTH_SECRET=your_secret_key
NEXTAUTH_URL=http://localhost:3000

Database Setup

Most templates include database migrations. Run them with:

npm run db:migrate

Deployment

Vercel (Recommended)

Connect your Git repository
Auto-deploy on push
Built-in CDN and SSL

Other Platforms

Netlify
Railway
AWS/Azure/GCP

Common Issues & Solutions

Port already in use

Change the port in your package.json or kill the process using the port

Module not found errors

Clear node_modules and reinstall: rm -rf node_modules && npm install

Database connection issues

Verify your DATABASE_URL in .env.local and ensure the database is running

Next Steps

Now that you have everything set up, explore our other documentation sections to learn more.