This project aims to build an efficient search system. The frontend is built using Next.js and Tailwind CSS.
Make sure you have the following installed:
- Node.js (>=14.x)
- npm (>=6.x) or yarn (>=1.x)
- Clone the repository:
git clone https://github.com/yourusername/yourrepository.git
- Navigate to the Frontend directory:
cd yourrepository/frontend/indexify
- Install the dependencies:
npm install
# or
yarn install
- 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
- Running the Development Server To start the development server, run:
npm run dev
# or
yarn dev
- Building for Production To build the project for production, run:
npm start
# or
yarn start