ignite-parse-auth-kit 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +16 -0
- package/bin/cli.js +1 -0
- package/package.json +4 -2
package/.env.example
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# This file contains environment variables for the Expo app.
|
|
2
|
+
# Copy this file to .env and fill in the actual values for your environment.
|
|
3
|
+
# Only includes environment variables that are actually used in the codebase.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Parse Server Configuration (Required)
|
|
7
|
+
# These variables are used to configure the Expo app and connect it to the Parse server.
|
|
8
|
+
EXPO_PUBLIC_APP_ID=your_app_id
|
|
9
|
+
EXPO_PUBLIC_JAVASCRIPT_KEY=your_javascript_key
|
|
10
|
+
EXPO_PUBLIC_SERVER_URL=https://your-server.domain.com/parse
|
|
11
|
+
|
|
12
|
+
# Google Authentication (Required)
|
|
13
|
+
# These variables are used to configure Google Sign-In functionality.
|
|
14
|
+
EXPO_PUBLIC_GOOGLE_CLIENT_ID=your_google_client_id.apps.googleusercontent.com
|
|
15
|
+
EXPO_PUBLIC_IOS_GOOGLE_CLIENT_ID=your_ios_google_client_id.apps.googleusercontent.com
|
|
16
|
+
EXPO_PUBLIC_ANDROID_GOOGLE_CLIENT_ID=your_android_google_client_id.apps.googleusercontent.com
|
package/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ignite-parse-auth-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A comprehensive React Native (Expo) template powered by Ignite CLI and Parse Server, providing production-ready authentication solutions.",
|
|
6
6
|
"main": "index.tsx",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"i18next": "^23.14.0",
|
|
85
85
|
"intl-pluralrules": "^2.0.1",
|
|
86
86
|
"jwt-decode": "^4.0.0",
|
|
87
|
+
"mobx": "^6.15.0",
|
|
87
88
|
"mobx-react-lite": "^4.1.0",
|
|
88
89
|
"parse": "^6.1.1",
|
|
89
90
|
"react": "19.0.0",
|
|
@@ -154,7 +155,8 @@
|
|
|
154
155
|
"jest.config.js",
|
|
155
156
|
"README.md",
|
|
156
157
|
"LICENSE",
|
|
157
|
-
"CONTRIBUTING.md"
|
|
158
|
+
"CONTRIBUTING.md",
|
|
159
|
+
".env.example"
|
|
158
160
|
],
|
|
159
161
|
"expo": {
|
|
160
162
|
"install": {
|