diff options
| author | Factiven <[email protected]> | 2023-04-26 12:42:35 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-26 12:42:35 +0700 |
| commit | ede417353785bdf0c24a8b816c4746cf251fdb5b (patch) | |
| tree | 68027d5d30c9a5975ac23834129862644d9d4dbe | |
| parent | Create README.md (diff) | |
| download | moopa-ede417353785bdf0c24a8b816c4746cf251fdb5b.tar.xz moopa-ede417353785bdf0c24a8b816c4746cf251fdb5b.zip | |
Update README.md
| -rw-r--r-- | README.md | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -8,7 +8,7 @@ <div align="center"> -     +      </div> <p align="center"><a href="https://moopa.live">Moopa</a> is an anime streaming website build with nextjs and tailwindcss with a sleek and modern design that offers Anilist integration to help you keep track of your favorite anime series. Moopa is entirely free and does not feature any ads, making it a great option for you who want an uninterrupted viewing experience.</p> @@ -56,6 +56,29 @@ - [ ] Ability to edit list inside detail page - [ ] Working on Manga pages +## For Local Development + +1. Clone this repository using : +```bash +git clone https://github.com/DevanAbinaya/moopa-v3.git +``` +2. Install package using npm : +```bash +npm install +``` +3. Create ```.env``` file in the root folder and put this inside the file : +```bash +CLIENT_ID="get the id from here https://anilist.co/settings/developer" +CLIENT_SECRET="get the secret from here https://anilist.co/settings/developer" +GRAPHQL_ENDPOINT=https://graphql.anilist.co +NEXTAUTH_SECRET='type this in your bash terminal (openssl rand -base64 32) with no bracket and paste it here' +NEXTAUTH_URL="for development use http://localhost:3000/ and for production use your domain url" +``` +4. Start local server : +```bash +npm run dev +``` + ## Credits - [Consumet API](https://github.com/consumet/api.consumet.org) |