Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 983 Bytes

README.md

File metadata and controls

58 lines (40 loc) · 983 Bytes

Frontend - Search Engine

This project aims to build an efficient search system. The frontend is built using Next.js and Tailwind CSS.

Getting Started

Prerequisites

Make sure you have the following installed:

  • Node.js (>=14.x)
  • npm (>=6.x) or yarn (>=1.x)

Installation

  1. Clone the repository:
git clone https://github.com/yourusername/yourrepository.git
  1. Navigate to the Frontend directory:
cd yourrepository/frontend/indexify
  1. Install the dependencies:
npm install
# or
yarn install
  1. The frontend requires specific environment variables to be configured. Create a .env.local file in the frontend/indexify directory and add the following:
NEXT_PUBLIC_BACKEND_URL=your_backend_url_here
  1. Running the Development Server To start the development server, run:
npm run dev
# or
yarn dev
  1. Building for Production To build the project for production, run:
npm start
# or
yarn start