Skip to content

calblueprint/just-detention

Repository files navigation

Mobile Application Template

Overview

This is a template for building mobile applications using an Expo and React-Native. It provides eslint, typescript, and prettier configs, as well as git hooks, github actions, and PR templates.

Note: This template is a work in progress. Code formatting configurations are opinionated and shouldn't be treated as truth.

Navigation

As of 8/20/2024, this repo does not have a navigation framework configured. The main navigation frameworks supported by Expo (previously used in Blueprint projects) are React Navigation and Expo Router:

  1. (Preferred) React Navigation provides a stack-based navigation model, allowing screens to be pushed onto and popped out of a navigation stack.
    1. NOTE: This framework provides more flexibility at the expense of more boilerplate code. However, being the more popular option, there is significant documentation and examples of mobile projects using React Navigation online.
  2. Expo Router uses a file-based router for React Native and web applications. This framework allows applications to be accessible across platforms (iOS, Android, Web). When a file is added to the app directory, the file automatically becomes a route in your navigation.
    1. NOTE: Expo Router is built on top of React Navigation and was released more recently. It may be easier to use out of the box, but it has rigid opinions regarding certain navigation features.

Backend

As of 8/20/2024, this template is not connected to a backend framework. Blueprint projects typically use Supabase backend/databases. See past mobile projects for examples.


Getting Started

Prerequisites

Check your installation of npm and node:

node -v
npm -v

We strongly recommend using a Node version manager like nvm (for Mac) or nvm-windows (for Windows) to install Node.js and npm. See Downloading and installing Node.js and npm.

Installation

  1. Fork/copy the repo.

    1. GitHub: Cloning a Repository
    2. GitHub: Generating SSH keys
  2. Install project dependencies. This command installs all packages from package.json.

    npm install
  3. [in progress...] Set up secrets

Development environment

  • VSCode (recommended)
    1. Open the project in VSCode.
    2. Install recommended workspace VSCode extensions. You should see a pop-up on the bottom right to "install the recommended extensions for this repository".

Running the app

  1. In the project directory, run:
     npx expo start
  2. Download Expo Go on your phone, connect to same network as your laptop, and use your phone camera to scan the QR code displayed in the command line.

Development tools

View the list of development scripts in the package.json file. Each script can be run through the terminal in the root of the project directory using the command below:

npm run <insert script name here>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published