Skip to content

R4V3NSH4D0W/kitsuneev3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

60 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Kitsunee

Kitsunee Logo

Screenshots

πŸŒ™ DarkMode

Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 56 59 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 30 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 38
Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 46 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 57 53 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 58 27
Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 58 48

β˜€ LightMode

Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 59 24 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 59 29 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 19 59 43
Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 00 28 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 00 42 Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 01 06
Simulator Screenshot - iPhone 16 Pro - 2024-12-25 at 20 01 15

Backend setup

  1. Clone Repo
git clone https://github.com/R4V3NSH4D0W/kitsunee-backend.git
  1. Install Depedencies
# using npm
npm install

# or using yarn
yarn install
  1. Run server
# using npm
npm run dev

# using Yarn
yarn run dev
  1. 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 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:

# 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

# using npm
npm run android

# OR using Yarn
yarn android

For iOS

# 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