https://github.com/r4v3nsh4d0w/kitsuneev3
Kitsunee App
https://github.com/r4v3nsh4d0w/kitsuneev3
android-application anime anime-list anime-streaming application consumet-extension react-native
Last synced: 7 days ago
JSON representation
Kitsunee App
- Host: GitHub
- URL: https://github.com/r4v3nsh4d0w/kitsuneev3
- Owner: R4V3NSH4D0W
- Created: 2024-12-05T12:47:46.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-02-28T15:10:50.000Z (7 months ago)
- Last Synced: 2025-09-23T12:44:07.578Z (18 days ago)
- Topics: android-application, anime, anime-list, anime-streaming, application, consumet-extension, react-native
- Language: TypeScript
- Homepage:
- Size: 7.11 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kitsunee
![]()
## Screenshots
### 🌙 DarkMode
|  |  |  |
|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
|  |  |  |
|  | | |### ☀ LightMode
|  |  |  |
|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
|  |  |  |
|  | | |# Backend setup
1. Clone Repo
````bash
git clone https://github.com/R4V3NSH4D0W/kitsunee-backend.git
````
2. Install Depedencies
````
# using npm
npm install# or using yarn
yarn install
````
3. Run server
````
# using npm
npm run dev# using Yarn
yarn run dev
````
4. Port forwarding
````
Step 1: go to Terminal
Step 2: Select SQL Console
Step 3: Forward port
Step 4: use port 3000
Step 5: Change visibility to Public
````# Next
## Clone APP Repo
```
git clone https://github.com/R4V3NSH4D0W/kitsuneev3.git
````## Install Dependencies
````
# using npm
npm install# or using yarn
yarn install
````# Before Gettting Started
## Create a env.js file in Root Directory
````
export const BASE_URL = "port forwared link";
````# Getting Started
>**Note**: Make sure you have completed the [React Native - Environment Setup](https://reactnative.dev/docs/environment-setup) instructions till "Creating a new application" step, before proceeding.
## Step 1: Start the Metro Server
First, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native.
To start Metro, run the following command from the _root_ of your React Native project:
```bash
# using npm
npm start# OR using Yarn
yarn start
```## Step 2: Start your Application
Let Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app:
### For Android
```bash
# using npm
npm run android# OR using Yarn
yarn android
```### For iOS
```bash
# using npm
npm run ios# OR using Yarn
yarn ios
```If everything is set up _correctly_, you should see your new app running in your _Android Emulator_ or _iOS Simulator_ shortly provided you have set up your emulator/simulator correctly.
This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.
# kitsuneev3