create-instant-app 0.22.109 → 0.22.110-experimental.sm-rules-update-2.21277045579.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-instant-app",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.110-experimental.sm-rules-update-2.21277045579.1",
|
|
4
4
|
"description": "Scaffold a new web/mobile app with InstantDB",
|
|
5
5
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/create-instant-app",
|
|
6
6
|
"repository": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"ora": "6.3.1",
|
|
36
36
|
"slugify": "^1.6.6",
|
|
37
37
|
"sort-package-json": "^2.10.0",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
38
|
+
"@instantdb/version": "0.22.110-experimental.sm-rules-update-2.21277045579.1",
|
|
39
|
+
"instant-cli": "0.22.110-experimental.sm-rules-update-2.21277045579.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@anthropic-ai/sdk": "^0.60.0",
|
package/template/rules/AGENTS.md
CHANGED
|
@@ -16,7 +16,8 @@ Instant provides client-side JS SDKs and an admin SDK:
|
|
|
16
16
|
- `@instantdb/admin` --- backend scripts / servers
|
|
17
17
|
|
|
18
18
|
When installing, always check what package manager the project uses (npm, pnpm,
|
|
19
|
-
bun) first and then install the latest version of the Instant SDK.
|
|
19
|
+
bun) first and then install the latest version of the Instant SDK. If working in
|
|
20
|
+
React use Next and Tailwind unless specified otherwise.
|
|
20
21
|
|
|
21
22
|
# Managing Instant Apps
|
|
22
23
|
|
|
@@ -35,6 +36,12 @@ npx instant-cli init-without-files --title <APP_NAME>
|
|
|
35
36
|
|
|
36
37
|
This outputs an app id and admin token. Store them in an env file.
|
|
37
38
|
|
|
39
|
+
If you get an error related to not being logged in tell the user to:
|
|
40
|
+
|
|
41
|
+
- Sign up for free or log in at https://instantdb.com
|
|
42
|
+
- Then run `npx instant-cli login` to authenticate the CLI
|
|
43
|
+
- Then re-run the init command
|
|
44
|
+
|
|
38
45
|
If you have an app id/admin token but no schema/perm files, pull them:
|
|
39
46
|
|
|
40
47
|
```bash
|
|
@@ -22,7 +22,8 @@ Instant provides client-side JS SDKs and an admin SDK:
|
|
|
22
22
|
- `@instantdb/admin` --- backend scripts / servers
|
|
23
23
|
|
|
24
24
|
When installing, always check what package manager the project uses (npm, pnpm,
|
|
25
|
-
bun) first and then install the latest version of the Instant SDK.
|
|
25
|
+
bun) first and then install the latest version of the Instant SDK. If working in
|
|
26
|
+
React use Next and Tailwind unless specified otherwise.
|
|
26
27
|
|
|
27
28
|
# Managing Instant Apps
|
|
28
29
|
|
|
@@ -41,6 +42,12 @@ npx instant-cli init-without-files --title <APP_NAME>
|
|
|
41
42
|
|
|
42
43
|
This outputs an app id and admin token. Store them in an env file.
|
|
43
44
|
|
|
45
|
+
If you get an error related to not being logged in tell the user to:
|
|
46
|
+
|
|
47
|
+
- Sign up for free or log in at https://instantdb.com
|
|
48
|
+
- Then run `npx instant-cli login` to authenticate the CLI
|
|
49
|
+
- Then re-run the init command
|
|
50
|
+
|
|
44
51
|
If you have an app id/admin token but no schema/perm files, pull them:
|
|
45
52
|
|
|
46
53
|
```bash
|
|
@@ -22,7 +22,8 @@ Instant provides client-side JS SDKs and an admin SDK:
|
|
|
22
22
|
- `@instantdb/admin` --- backend scripts / servers
|
|
23
23
|
|
|
24
24
|
When installing, always check what package manager the project uses (npm, pnpm,
|
|
25
|
-
bun) first and then install the latest version of the Instant SDK.
|
|
25
|
+
bun) first and then install the latest version of the Instant SDK. If working in
|
|
26
|
+
React use Next and Tailwind unless specified otherwise.
|
|
26
27
|
|
|
27
28
|
# Managing Instant Apps
|
|
28
29
|
|
|
@@ -41,6 +42,12 @@ npx instant-cli init-without-files --title <APP_NAME>
|
|
|
41
42
|
|
|
42
43
|
This outputs an app id and admin token. Store them in an env file.
|
|
43
44
|
|
|
45
|
+
If you get an error related to not being logged in tell the user to:
|
|
46
|
+
|
|
47
|
+
- Sign up for free or log in at https://instantdb.com
|
|
48
|
+
- Then run `npx instant-cli login` to authenticate the CLI
|
|
49
|
+
- Then re-run the init command
|
|
50
|
+
|
|
44
51
|
If you have an app id/admin token but no schema/perm files, pull them:
|
|
45
52
|
|
|
46
53
|
```bash
|