Skip to content

Commit

Permalink
go public
Browse files Browse the repository at this point in the history
  • Loading branch information
hivivo committed Sep 26, 2021
1 parent 9f9662b commit cc488bb
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 3 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 duapp.org

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Expo + Firebase Auth + UI-kitten Starter Kit
# Expo + Firebase Auth + UI Kitten Starter Kit

This is a boilerplate for starting an Expo project with Login/Register
This is a boilerplate for starting an Expo project with Login/Register flows ready

## Features

- [Expo](https://expo.dev) with JavaScript
- [UI Kitten](https://akveo.github.io/react-native-ui-kitten/) as UI library
- [Firebase](https://firebase.google.com) integration (No Analytics yet)
- Localization (i18n) ready
- `.env` Environment override
- Easy form development by [Formik](https://formik.org) and [Yup](https://github.com/jquense/yup)
- Linter and formatter by [eslint-config-airbnb](https://www.npmjs.com/package/eslint-config-airbnb) and [Prettier](https://prettier.io)
- Testing support with `jest-expo` and [React Native Testing Library](https://github.com/callstack/react-native-testing-library)
- GitHub CI workflow

## Requirement

Expand All @@ -18,6 +30,8 @@ FIREBASE_STORAGE_BUCKET="project-id.appspot.com"
FIREBASE_MESSAGING_SENDER_ID="sender-id"
```

Add Email/Password Sign-in provider in Firebase Authentication.

## Development

### Getting Started
Expand Down
20 changes: 19 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
{
"name": "expo-fire-kitten",
"version": "1.0.0",
"description": "Expo boilerplate with Login/Register ready (Firebase + UI Kitten)",
"keywords": [
"expo",
"boilerplate",
"firebase",
"ui-kitten"
],
"author": "Vivo Xu <vivo@duapp.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/duapp/expo-fire-kitten.git"
},
"bugs": {
"url": "https://github.com/duapp/expo-fire-kitten/issues"
},
"homepage": "https://github.com/duapp/expo-fire-kitten#readme",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
Expand Down Expand Up @@ -72,7 +91,6 @@
"!**/jest.setup.js"
]
},
"private": true,
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
}
Expand Down

0 comments on commit cc488bb

Please sign in to comment.