Installation & Setup

Follow these steps to run Onelink locally on your machine.

Prerequisites

  • Node.js: A recent version (LTS recommended).
  • Package Manager: npm, yarn, or pnpm.

Setup Steps

  1. Clone the repository:

    git clone https://github.com/fayazara/onelink.git
    cd onelink
  2. Install dependencies:

    # using npm
    npm install
    
    # using yarn
    yarn install
    
    # using pnpm
    pnpm install --shamefully-hoist
  3. Start the development server:

    npm run dev

    The application will be available at http://localhost:3000.

Production Build

To build the application for production:

npm run build

To preview the production build locally:

npm run preview