This repository contains the source code for Anime-next.
Clone this repository using Git:
git clone https://github.com/Zeeshan1101/anime-next.git
cd anime-next
Before running the project, make sure to set up your environment variables. Create an .env
file in the root directory of the project and add the following variables:
ANILIST_DOMAIN=your_anilist_domain
CLIENT_ID=your_client_id
CLIENT_SECRET=your_client_secret
REDIRECT_URI=your_redirect_uri
ANILIST_GRAPHQL=your_anilist_graphql
Replace your_anilist_domain
, your_client_id
, your_client_secret
, your_redirect_uri
, and your_anilist_graphql
with the respective values provided by AniList or the necessary sources.
Install the dependencies using package manager:
npm install
yarn install
pnpm install
Generate the types using the following command:
npm run generate
yarn run generate
pnpm run generate
Run the project using the following command:
npm run dev
yarn run dev
pnpm run dev
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.