Docs
Installation
Installation
Follow these steps to get your project up and running in minutes.
Prerequisites
Before you begin, ensure you have the following installed on your machine:
- Node.js (v18 or higher)
- npm, pnpm, or yarn package manager
- Git for version control
1. Download the Project
After purchasing your license, download the project zip file from your dashboard or clone the repository if you have access.
git clone https://github.com/xtreme-creative/your-project.git2. Install Dependencies
Navigate to the project directory and install the required dependencies.
cd your-projectnpm installor
pnpm install3. Configure Environment
Copy the example environment file to create your local configuration.
cp .env.example .envOpen .env and update the variables with your own credentials (database URL, API keys, etc.).
4. Run Development Server
Start the local development server.
npm run devVisit http://localhost:3000 in your browser to see the application.