This repository utilizes React, TypeScript (with Vite), Tailwind CSS, and SASS to create an interactive user interface for accessing anime recommendations generated by the backend API.
User Interface
: Intuitive and user-friendly interface for browsing anime recommendations.Authentication
: Secure authentication system to manage user sessions.Dynamic Rendering
: Dynamically fetches and updates anime data from the backend API.Responsive Design
: Ensures optimal viewing experience across various devices and screen sizes.
- Clone the repository
git clone https://github.com/Dev-Aligator/apriome.git
- Install dependencies
npm install --legacy-peer-deps
- Run the development server
npm run dev
To configure the base URL for the API, navigate to the
src/constants/environment.ts
file. Replace the default baseUrl
value with your desired backend API URL.
baseUrl: "http://127.0.0.1:8000",
Dev-Aligator