Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/expo-doctor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
- name: 📦 Setup Node + PNPM + install deps
uses: ./.github/actions/setup-node-pnpm-install

- name: Create .env.development placeholder
run: |
echo SECRET_KEY=secretKey > .env.development
echo API_URL=apiUrl >> .env.development
echo VAR_NUMBER=1 >> .env.development

- name: Run prebuild
run: pnpm run prebuild ## we only need to run this to generate the badged icon in `.expo` folder

Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ yarn-error.log
# macOS
.DS_Store

# This folders should be generated with a prebuild
ios/
android/

# Environment files
.env.development
.env.production
.env.staging
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@

![expo](https://img.shields.io/github/package-json/dependency-version/obytes/react-native-template-obytes/expo?label=expo) ![react-native](https://img.shields.io/github/package-json/dependency-version/obytes/react-native-template-obytes/react-native?label=react-native) ![GitHub Repo stars](https://img.shields.io/github/stars/obytes/react-native-template-obytes) ![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/m/obytes/react-native-template-obytes) ![GitHub issues](https://img.shields.io/github/issues/obytes/react-native-template-obytes) ![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/obytes/react-native-template-obytes)

# WIP - This Readme is a work in progress

# Getting started

Clone this repo in a folder with the name of your new project:

`git clone git@github.com:rootstrap/react-native-template.git <new-project>`

Run the setup project script that will install dependencies, get rid of files you won't need anymore and get your project on a clean start.

`pnpm setup-project <new-project>`

Once this step is completed add your new github repo:

`git remote add origin git@github.com:<org>/<new-project-repo-name>.git`

#

📱 A template for your next React Native project 🚀, Made with developer experience and performance first: Expo, TypeScript, TailwindCSS, Husky, Lint-Staged, expo-router, react-query, react-hook-form, I18n.

# Overview
Expand Down Expand Up @@ -55,7 +73,6 @@ When creating this starter kit, we had several guiding principles in mind::

## ✍️ Documentation

- [Create new project ](https://starter.obytes.com/getting-started/create-new-app/)
- [Rules and Conventions](https://starter.obytes.com/getting-started/rules-and-conventions/)
- [Project structure](https://starter.obytes.com/getting-started/project-structure)
- [Environment vars and config](https://starter.obytes.com/getting-started/environment-vars-config)
Expand Down
16 changes: 0 additions & 16 deletions android/.gitignore

This file was deleted.

172 changes: 0 additions & 172 deletions android/app/build.gradle

This file was deleted.

Binary file removed android/app/debug.keystore
Binary file not shown.
14 changes: 0 additions & 14 deletions android/app/proguard-rules.pro

This file was deleted.

7 changes: 0 additions & 7 deletions android/app/src/debug/AndroidManifest.xml

This file was deleted.

36 changes: 0 additions & 36 deletions android/app/src/main/AndroidManifest.xml

This file was deleted.

Binary file removed android/app/src/main/assets/fonts/Inter.ttf
Binary file not shown.

This file was deleted.

Loading