@sqliteai/todoapp 1.0.0 → 1.0.1
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/README.md +1 -2
- package/app.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,6 @@ Create a new project using this template:
|
|
|
10
10
|
```bash
|
|
11
11
|
npx create-expo-app MyApp --template @sqliteai/todoapp
|
|
12
12
|
cd MyApp
|
|
13
|
-
npm install
|
|
14
13
|
```
|
|
15
14
|
|
|
16
15
|
### 2. Database Setup
|
|
@@ -38,7 +37,7 @@ Rename the `.env.example` into `.env` and fill with your values.
|
|
|
38
37
|
|
|
39
38
|
```bash
|
|
40
39
|
npx expo prebuild # run once
|
|
41
|
-
npm
|
|
40
|
+
npm run ios # or android
|
|
42
41
|
```
|
|
43
42
|
|
|
44
43
|
## ✨ Features
|
package/app.json
CHANGED