create-twenty-app 2.6.0 → 2.8.0
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 +3 -3
- package/dist/cli.cjs +47 -47
- package/dist/cli.mjs +5164 -5074
- package/dist/constants/template/AGENTS.md +13 -13
- package/dist/constants/template/README.md +2 -2
- package/dist/constants/template/src/__tests__/global-setup.ts +1 -1
- package/dist/create-app.command.d.ts +1 -1
- package/package.json +2 -2
- package/src/constants/template/README.md +2 -2
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ The scaffolder will:
|
|
|
35
35
|
| `--name <name>` | Set the app name |
|
|
36
36
|
| `--display-name <displayName>` | Set the display name |
|
|
37
37
|
| `--description <description>` | Set the description |
|
|
38
|
-
| `--
|
|
38
|
+
| `--url <url>` | Twenty workspace URL (default: `http://localhost:2020`) |
|
|
39
39
|
| `--authentication-method <method>` | `oauth` or `apiKey` (default: `apiKey` for local, `oauth` for remote) |
|
|
40
40
|
|
|
41
41
|
## Documentation
|
|
@@ -48,8 +48,8 @@ Full documentation is available at **[docs.twenty.com/developers/extend/apps](ht
|
|
|
48
48
|
|
|
49
49
|
## Troubleshooting
|
|
50
50
|
|
|
51
|
-
- Server not starting: check Docker is running (`docker info`), then try `yarn twenty
|
|
52
|
-
- Auth not working: run `yarn twenty remote
|
|
51
|
+
- Server not starting: check Docker is running (`docker info`), then try `yarn twenty docker:logs`.
|
|
52
|
+
- Auth not working: run `yarn twenty remote:add --local` to re-authenticate.
|
|
53
53
|
- Types not generated: ensure `yarn twenty dev` is running — it auto-generates the typed client.
|
|
54
54
|
|
|
55
55
|
## Contributing
|