17.04.2025_11.09.21_REC.mp4
Demo on Vercel
clientis the directory of the web applicationold serveris the old backend server we used. It is no longer in user, just there for the records.HFis the model hosted on gradio.imagejust has the images in the README.
A full-stack web application built entirely with Next.js, utilizing Next.js API routes for backend functionality.
/
├── client/ # Frontend and backend (Next.js)
Ensure you have the following installed:
- Node.js (LTS version recommended)
- npm (comes with Node.js)
-
Navigate to the
clientdirectory:cd client -
Install the required Node.js packages (force install to resolve dependencies if needed):
npm install --force
-
Start the development server:
npm run dev
The application should now be running at
http://localhost:3000.
- The
serverdirectory is no longer used, as we have migrated backend functionality to Next.js API routes. - Note that you need a
.envfile with a structure similar to the one inclient\env.example