Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/r4v3nsh4d0w/kitsuneev3

Kitsunee App
https://github.com/r4v3nsh4d0w/kitsuneev3

android-application anime animes react-native

Last synced: about 7 hours ago
JSON representation

Kitsunee App

Awesome Lists containing this project

README

        

# Kitsunee


Kitsunee Logo

## Screenshots

### 🌙 DarkMode

| ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 56 59](https://github.com/user-attachments/assets/fb3f4fdd-5e20-45ac-aebc-cf689ed77a8c) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 30](https://github.com/user-attachments/assets/ad05193a-f344-4fad-a922-947be2263d1a) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 38](https://github.com/user-attachments/assets/16452e98-22ef-4544-9409-9829d354b16d) |
|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
| ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 46](https://github.com/user-attachments/assets/106cfdfc-00a8-4da4-8230-0c6633cdc2cc) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 53](https://github.com/user-attachments/assets/b9510fcc-59ac-4070-a9eb-0ddf46b8c5e2) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 58 27](https://github.com/user-attachments/assets/d7824d39-4c8f-4912-a7a9-1dfd7def8472) |
| ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 58 48](https://github.com/user-attachments/assets/8239dda1-1c23-4363-b568-f5baf3909de1) | | |

### ☀ LightMode

| ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 59 24](https://github.com/user-attachments/assets/d43986d5-97e9-4435-acc3-33527c49c01b) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 59 29](https://github.com/user-attachments/assets/585d5a8c-7c07-4688-ae46-f3990f5a5c6e) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 59 43](https://github.com/user-attachments/assets/28383f6e-aca9-4514-a29d-6e3d563f8898) |
|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
| ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 00 28](https://github.com/user-attachments/assets/7c59099b-683b-462f-908f-292a21b8cfe0) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 00 42](https://github.com/user-attachments/assets/27a065fd-1fd6-4a7c-b01b-2b8df6883e18) | ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 01 06](https://github.com/user-attachments/assets/092a31a5-9942-47c1-8953-df3076bffccd) |
| ![Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 01 15](https://github.com/user-attachments/assets/2b462255-6854-48dd-b9ca-ca4e5356d851) | | |

# 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