Skip to content

Latest commit

 

History

History
81 lines (52 loc) · 2.75 KB

File metadata and controls

81 lines (52 loc) · 2.75 KB

Contributing

We are open to any developer that wants to lend their hand at Jellify development, and developers can join our Discord server to get in contact with us.

Here's the best way to get started:

  • Fork this repository
  • Follow the instructions for Running Locally
  • Check out the issues if you need inspiration
  • Hack, hack, hack
  • ???
  • Submit a Pull Request to sync the main repository with your fork
  • Profit! 🎉

Running Locally

Universal Dependencies

🍎 iOS

Dependencies

Instructions

Setup
  • Clone this repository
  • Run bun init-ios to initialize the project
Running
  • Run bun start to start the dev server

  • Open the Jellify.xcodeworkspace with Xcode, not the Jellify.xcodeproject

  • Run in the simulator

    • You will need to wait for Xcode to finish it's "Indexing" step
  • To run on device, you will need access to the Signing Repository

    • Setup a GitHub Personal Access Token and export it to a variable "MATCH_REPO_PAT"
    • Run bun fastlane:ios:match to fetch the signing keys and certificates
Building
  • To create a build, run bun fastlane:ios:build to use fastlane to compile an .ipa

🤖 Android

Dependencies

Instructions

Setup
  • Clone this repository
  • Run bun install to install npm packages
Running
  • Run bun start to start the dev server
  • Open the android folder with Android Studio
    • Android Studio should automatically grab the "Run Configurations" and initialize Gradle
  • Run either on a device or in the simulator
Building
  • To create a build, run bun fastlane:android:build to use fastlane to compile an .apk for all architectures
  • Alternatively, run cd android; ./gradlew assembleRelease to use Gradle to compile an .apk

References