@hellocoop/quickstart 2.0.0 → 2.0.2
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 +11 -0
- package/package.json +1 -1
- package/page.js +1 -7
- package/quickstart.mjs +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,17 @@ npx @hellocoop/quickstart@latest
|
|
|
9
9
|
|
|
10
10
|
This will open up a browser window, where you will need to login with Hellō, and then choose to create a new app, or return the `client_id`.
|
|
11
11
|
|
|
12
|
+
### Options
|
|
13
|
+
|
|
14
|
+
- --provider_hint (-p) - space separated string of provider_hint
|
|
15
|
+
- --suffix (-x) - suffix to add to generated app name
|
|
16
|
+
- --integration (-i) - integration name shown in console
|
|
17
|
+
- --file (-f) - file to write out HELLO_CLIENT_ID_DEFAULT
|
|
18
|
+
- --secret (-s) - boolean to generate a HELLO_COOKIE_SECRET_DEFAULT value
|
|
19
|
+
- --wildcard (-w) - boolean to set the wildcard domain Development Redirect URI
|
|
20
|
+
- --debug (-d) - output debug info
|
|
21
|
+
|
|
22
|
+
|
|
12
23
|
## Import Package
|
|
13
24
|
|
|
14
25
|
This package is useful for platform specific installers such as [Hellō Quickstart for Next.js](https://www.npmjs.com/package/@hellocoop/quickstart-nextjs)
|
package/package.json
CHANGED
package/page.js
CHANGED
|
@@ -57,13 +57,7 @@ export default function (client_id) {
|
|
|
57
57
|
</ul>
|
|
58
58
|
<a href="https://console.hello.coop/?client_id=${client_id}" style="font-weight: 500;">at the Hellō Developer Console</a>
|
|
59
59
|
</div>
|
|
60
|
-
<p style="margin:
|
|
61
|
-
<div style="display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;">
|
|
62
|
-
<p style="display: flex; justify-content: center; align-items: center; gap: 20px;">
|
|
63
|
-
<a href="https://www.hello.coop/">Learn more about Hellō</a>
|
|
64
|
-
<a href="https://www.hello.dev/">Hellō Developer Docs</a>
|
|
65
|
-
</p>
|
|
66
|
-
</div>
|
|
60
|
+
<p style="margin: 48px 0; font-size: 26px;">You may now close this window.</p>
|
|
67
61
|
</main>
|
|
68
62
|
</body>
|
|
69
63
|
</html>`
|