@ramonclaudio/create-vexpo 0.1.4 → 0.1.5
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/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ramon Claudio
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -7,6 +7,10 @@ Scaffold a new [vexpo](https://github.com/ramonclaudio/vexpo) project: an Expo S
|
|
|
7
7
|
|
|
8
8
|
This is the opinionated stack I reach for on every new app, Expo and Convex and Better Auth sitting on top of EAS, and I wanted anyone to be able to start from it without a day of wiring. The CLI walks you through creating a Convex account or linking one you already have, so you go from empty folder to a running app without leaving the terminal.
|
|
9
9
|
|
|
10
|
+
<p align="center">
|
|
11
|
+
<img src="https://raw.githubusercontent.com/ramonclaudio/vexpo/main/docs/assets/demo-app.gif" width="300" alt="The scaffolded app: sign up, onboarding, search, and the dark-mode flip">
|
|
12
|
+
</p>
|
|
13
|
+
|
|
10
14
|
## Usage
|
|
11
15
|
|
|
12
16
|
```bash
|
package/dist/index.js
CHANGED
|
@@ -37,9 +37,12 @@ jobs:
|
|
|
37
37
|
name: Mint unique test credentials
|
|
38
38
|
outputs:
|
|
39
39
|
email: ${{ steps.creds.outputs.email }}
|
|
40
|
+
password: ${{ steps.creds.outputs.password }}
|
|
40
41
|
steps:
|
|
41
42
|
- id: creds
|
|
42
|
-
run:
|
|
43
|
+
run: |
|
|
44
|
+
set-output email "maestro-e2e-$(date +%s)@example.com"
|
|
45
|
+
set-output password "$(openssl rand -hex 16)"
|
|
43
46
|
|
|
44
47
|
maestro:
|
|
45
48
|
name: Run Maestro flows
|
|
@@ -49,7 +52,7 @@ jobs:
|
|
|
49
52
|
env:
|
|
50
53
|
MAESTRO_APP_ID: ${{ env.EXPO_PUBLIC_APP_BUNDLE_ID }}
|
|
51
54
|
MAESTRO_TEST_EMAIL: ${{ needs.test_creds.outputs.email }}
|
|
52
|
-
MAESTRO_TEST_PASSWORD:
|
|
55
|
+
MAESTRO_TEST_PASSWORD: ${{ needs.test_creds.outputs.password }}
|
|
53
56
|
params:
|
|
54
57
|
build_id: ${{ needs.build_ios_simulator.outputs.build_id }}
|
|
55
58
|
flow_path: [".maestro"]
|
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
An iOS app on Expo SDK 56, wired end-to-end with Convex, Better Auth, and Resend. Native SwiftUI throughout, email + password + OTP + Apple Sign In, push, and the full EAS build surface. Everything below is already wired, so you run two commands and you're in the app.
|
|
4
4
|
|
|
5
|
+
<p align="center">
|
|
6
|
+
<img src="https://raw.githubusercontent.com/ramonclaudio/vexpo/main/docs/assets/demo-app.gif" width="300" alt="Sign up, onboarding, search, and the dark-mode flip">
|
|
7
|
+
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
<p align="center">
|
|
11
|
+
<img src="https://raw.githubusercontent.com/ramonclaudio/vexpo/main/docs/assets/screens.png" width="600" alt="Home, profile, and settings in light and dark">
|
|
12
|
+
</p>
|
|
13
|
+
|
|
5
14
|
## Quick start
|
|
6
15
|
|
|
7
16
|
Requires macOS and Xcode. This is an iOS-only template, and `npm run ios` builds against the simulator. See [Pre-reqs](#pre-reqs).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ramonclaudio/create-vexpo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Scaffold a new vexpo project. Expo SDK 56 + Convex + Better Auth + Resend, wired for iOS, real auth, real push, real OTA, real App Store submission.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"better-auth",
|