create-cloudflare 0.0.0-d031e75a → 0.0.0-d0fb7b81
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/dist/cli.js +20217 -19197
- package/package.json +3 -5
- package/templates/angular/c3.ts +4 -5
- package/templates/astro/c3.ts +1 -1
- package/templates/common/c3.ts +7 -6
- package/templates/hello-world/c3.ts +7 -6
- package/templates/hello-world-durable-object/c3.ts +7 -6
- package/templates/hono/c3.ts +2 -2
- package/templates/next/README.md +58 -0
- package/templates/next/app/js/app/api/hello/route.js +21 -0
- package/templates/next/app/js/app/not-found.js +58 -0
- package/templates/next/app/ts/app/api/hello/route.ts +22 -0
- package/templates/next/app/ts/app/not-found.tsx +58 -0
- package/templates/next/c3.ts +76 -61
- package/templates/next/env.d.ts +7 -0
- package/templates/next/pages/js/pages/api/hello.js +23 -0
- package/templates/next/pages/ts/pages/api/hello.ts +24 -0
- package/templates/next/wrangler.toml +57 -0
- package/templates/nuxt/c3.ts +57 -17
- package/templates/nuxt/templates/wrangler.toml +50 -0
- package/templates/openapi/c3.ts +0 -1
- package/templates/pre-existing/c3.ts +2 -4
- package/templates/queues/c3.ts +7 -6
- package/templates/qwik/c3.ts +62 -3
- package/templates/qwik/templates/wrangler.toml +50 -0
- package/templates/remix/c3.ts +1 -1
- package/templates/scheduled/c3.ts +7 -6
- package/templates/solid/c3.ts +11 -20
- package/templates/solid/js/vite.config.js +9 -4
- package/templates/solid/ts/vite.config.ts +9 -4
- package/templates/svelte/c3.ts +81 -27
- package/templates/svelte/js/src/hooks.server.js +25 -0
- package/templates/svelte/js/wrangler.toml +50 -0
- package/templates/svelte/ts/src/hooks.server.ts +24 -0
- package/templates/svelte/ts/wrangler.toml +50 -0
- package/templates/chatgptPlugin/c3.ts +0 -10
- package/templates/chatgptPlugin/ts/.assets/example.png +0 -0
- package/templates/chatgptPlugin/ts/README.md +0 -25
- package/templates/chatgptPlugin/ts/__dot__gitignore +0 -171
- package/templates/chatgptPlugin/ts/package.json +0 -16
- package/templates/chatgptPlugin/ts/src/index.ts +0 -33
- package/templates/chatgptPlugin/ts/src/search.ts +0 -59
- package/templates/chatgptPlugin/ts/wrangler.toml +0 -3
- package/templates/next/templates.ts +0 -281
- package/templates/svelte/templates.ts +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cloudflare",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-d0fb7b81",
|
|
4
4
|
"description": "A CLI for creating and deploying new applications to Cloudflare.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"@types/esprima": "^4.0.3",
|
|
41
41
|
"@types/node": "^18.15.3",
|
|
42
42
|
"@types/semver": "^7.5.1",
|
|
43
|
-
"@types/shell-quote": "^1.7.2",
|
|
44
43
|
"@types/which-pm-runs": "^1.0.0",
|
|
45
44
|
"@types/yargs": "^17.0.22",
|
|
46
45
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
@@ -60,16 +59,15 @@
|
|
|
60
59
|
"pnpm": "^8.10.0",
|
|
61
60
|
"recast": "^0.22.0",
|
|
62
61
|
"semver": "^7.5.1",
|
|
63
|
-
"shell-quote": "^1.8.1",
|
|
64
62
|
"typescript": "^5.0.2",
|
|
65
|
-
"undici": "5.28.
|
|
63
|
+
"undici": "5.28.3",
|
|
66
64
|
"vite-tsconfig-paths": "^4.0.8",
|
|
67
65
|
"which-pm-runs": "^1.1.0",
|
|
68
66
|
"yargs": "^17.7.1",
|
|
69
67
|
"yarn": "^1.22.19",
|
|
70
68
|
"@cloudflare/cli": "1.1.1",
|
|
71
69
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
72
|
-
"wrangler": "3.
|
|
70
|
+
"wrangler": "3.28.4"
|
|
73
71
|
},
|
|
74
72
|
"engines": {
|
|
75
73
|
"node": ">=18.14.1"
|
package/templates/angular/c3.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { cp } from "node:fs/promises";
|
|
2
1
|
import { resolve } from "node:path";
|
|
3
2
|
import { logRaw } from "@cloudflare/cli";
|
|
4
3
|
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
@@ -19,10 +18,10 @@ const generate = async (ctx: C3Context) => {
|
|
|
19
18
|
const configure = async (ctx: C3Context) => {
|
|
20
19
|
updateAngularJson(ctx);
|
|
21
20
|
await updateAppCode();
|
|
22
|
-
await installCFWorker(
|
|
21
|
+
await installCFWorker();
|
|
23
22
|
};
|
|
24
23
|
|
|
25
|
-
async function installCFWorker(
|
|
24
|
+
async function installCFWorker() {
|
|
26
25
|
await installPackages(
|
|
27
26
|
["@cloudflare/workers-types", "@miniflare/tre@next", "wrangler@beta"],
|
|
28
27
|
{
|
|
@@ -93,8 +92,8 @@ const config: TemplateConfig = {
|
|
|
93
92
|
deploy: `${npm} run pages:build && wrangler pages deploy dist/cloudflare`,
|
|
94
93
|
},
|
|
95
94
|
}),
|
|
96
|
-
|
|
97
|
-
|
|
95
|
+
deployScript: "deploy",
|
|
96
|
+
devScript: "start",
|
|
98
97
|
testFlags: ["--style", "sass"],
|
|
99
98
|
};
|
|
100
99
|
export default config;
|
package/templates/astro/c3.ts
CHANGED
|
@@ -14,7 +14,7 @@ const generate = async (ctx: C3Context) => {
|
|
|
14
14
|
logRaw(""); // newline
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
const configure = async (
|
|
17
|
+
const configure = async () => {
|
|
18
18
|
await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
|
|
19
19
|
silent: true,
|
|
20
20
|
startText: "Installing adapter",
|
package/templates/common/c3.ts
CHANGED
|
@@ -3,13 +3,14 @@ export default {
|
|
|
3
3
|
id: "common",
|
|
4
4
|
displayName: "Example router & proxy Worker",
|
|
5
5
|
platform: "workers",
|
|
6
|
-
languages: ["js", "ts"],
|
|
7
6
|
copyFiles: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
variants: {
|
|
8
|
+
js: {
|
|
9
|
+
path: "./js",
|
|
10
|
+
},
|
|
11
|
+
ts: {
|
|
12
|
+
path: "./ts",
|
|
13
|
+
},
|
|
13
14
|
},
|
|
14
15
|
},
|
|
15
16
|
};
|
|
@@ -3,13 +3,14 @@ export default {
|
|
|
3
3
|
id: "hello-world",
|
|
4
4
|
displayName: '"Hello World" Worker',
|
|
5
5
|
platform: "workers",
|
|
6
|
-
languages: ["js", "ts"],
|
|
7
6
|
copyFiles: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
variants: {
|
|
8
|
+
js: {
|
|
9
|
+
path: "./js",
|
|
10
|
+
},
|
|
11
|
+
ts: {
|
|
12
|
+
path: "./ts",
|
|
13
|
+
},
|
|
13
14
|
},
|
|
14
15
|
},
|
|
15
16
|
};
|
|
@@ -3,13 +3,14 @@ export default {
|
|
|
3
3
|
id: "hello-world-durable-object",
|
|
4
4
|
displayName: '"Hello World" Durable Object',
|
|
5
5
|
platform: "workers",
|
|
6
|
-
languages: ["js", "ts"],
|
|
7
6
|
copyFiles: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
variants: {
|
|
8
|
+
js: {
|
|
9
|
+
path: "./js",
|
|
10
|
+
},
|
|
11
|
+
ts: {
|
|
12
|
+
path: "./ts",
|
|
13
|
+
},
|
|
13
14
|
},
|
|
14
15
|
},
|
|
15
16
|
};
|
package/templates/hono/c3.ts
CHANGED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`c3`](https://developers.cloudflare.com/pages/get-started/c3).
|
|
2
|
+
|
|
3
|
+
## Getting Started
|
|
4
|
+
|
|
5
|
+
First, run the development server:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm run dev
|
|
9
|
+
# or
|
|
10
|
+
yarn dev
|
|
11
|
+
# or
|
|
12
|
+
pnpm dev
|
|
13
|
+
# or
|
|
14
|
+
bun dev
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
18
|
+
|
|
19
|
+
## Cloudflare integration
|
|
20
|
+
|
|
21
|
+
Besides the `dev` script mentioned above `c3` has added a few extra scripts that allow you to integrate the application with the [Cloudflare Pages](https://pages.cloudflare.com/) environment, these are:
|
|
22
|
+
- `pages:build` to build the application for Pages using the [`@cloudflare/next-on-pages`](https://github.com/cloudflare/next-on-pages) CLI
|
|
23
|
+
- `preview` to locally preview your Pages application using the [Wrangler](https://developers.cloudflare.com/workers/wrangler/) CLI
|
|
24
|
+
- `deploy` to deploy your Pages application using the [Wrangler](https://developers.cloudflare.com/workers/wrangler/) CLI
|
|
25
|
+
|
|
26
|
+
> __Note:__ while the `dev` script is optimal for local development you should preview your Pages application as well (periodically or before deployments) in order to make sure that it can properly work in the Pages environment (for more details see the [`@cloudflare/next-on-pages` recommended workflow](https://github.com/cloudflare/next-on-pages/blob/05b6256/internal-packages/next-dev/README.md#recommended-workflow))
|
|
27
|
+
|
|
28
|
+
### Bindings
|
|
29
|
+
|
|
30
|
+
Cloudflare [Bindings](https://developers.cloudflare.com/pages/functions/bindings/) are what allows you to interact with resources available in the Cloudflare Platform.
|
|
31
|
+
|
|
32
|
+
You can use bindings during development, when previewing locally your application and of course in the deployed application:
|
|
33
|
+
|
|
34
|
+
- To use bindings in dev mode you need to define them in the `next.config.js` file under `setupDevBindings`, this mode uses the `next-dev` `@cloudflare/next-on-pages` submodule. For more details see its [documentation](https://github.com/cloudflare/next-on-pages/blob/05b6256/internal-packages/next-dev/README.md).
|
|
35
|
+
|
|
36
|
+
- To use bindings in the preview mode you need to add them to the `pages:preview` script accordingly to the `wrangler pages dev` command. For more details see its [documentation](https://developers.cloudflare.com/workers/wrangler/commands/#dev-1) or the [Pages Bindings documentation](https://developers.cloudflare.com/pages/functions/bindings/).
|
|
37
|
+
|
|
38
|
+
- To use bindings in the deployed application you will need to configure them in the Cloudflare [dashboard](https://dash.cloudflare.com/). For more details see the [Pages Bindings documentation](https://developers.cloudflare.com/pages/functions/bindings/).
|
|
39
|
+
|
|
40
|
+
#### KV Example
|
|
41
|
+
|
|
42
|
+
`c3` has added for you an example showing how you can use a KV binding.
|
|
43
|
+
|
|
44
|
+
In order to enable the example:
|
|
45
|
+
- Search for javascript/typescript lines containing the following comment:
|
|
46
|
+
```ts
|
|
47
|
+
// KV Example:
|
|
48
|
+
```
|
|
49
|
+
and uncomment the commented lines below it.
|
|
50
|
+
- Do the same in the `wrangler.toml` file, where
|
|
51
|
+
the comment is:
|
|
52
|
+
```
|
|
53
|
+
# KV Example:
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
After doing this you can run the `dev` or `preview` script and visit the `/api/hello` route to see the example in action.
|
|
57
|
+
|
|
58
|
+
Finally, if you also want to see the example work in the deployed application make sure to add a `MY_KV` binding to your Pages application in its [dashboard kv bindings settings section](https://dash.cloudflare.com/?to=/:account/pages/view/:pages-project/settings/functions#kv_namespace_bindings_section). After having configured it make sure to re-deploy your application.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { getRequestContext } from '@cloudflare/next-on-pages'
|
|
2
|
+
|
|
3
|
+
export const runtime = 'edge'
|
|
4
|
+
|
|
5
|
+
export async function GET(request) {
|
|
6
|
+
let responseText = 'Hello World'
|
|
7
|
+
|
|
8
|
+
// In the edge runtime you can use Bindings that are available in your application
|
|
9
|
+
// (for more details see:
|
|
10
|
+
// - https://developers.cloudflare.com/pages/framework-guides/deploy-a-nextjs-site/#use-bindings-in-your-nextjs-application
|
|
11
|
+
// - https://developers.cloudflare.com/pages/functions/bindings/
|
|
12
|
+
// )
|
|
13
|
+
//
|
|
14
|
+
// KV Example:
|
|
15
|
+
// const myKv = getRequestContext().env.MY_KV
|
|
16
|
+
// await myKv.put('suffix', ' from a KV store!')
|
|
17
|
+
// const suffix = await myKv.get('suffix')
|
|
18
|
+
// responseText += suffix
|
|
19
|
+
|
|
20
|
+
return new Response(responseText)
|
|
21
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export const runtime = "edge";
|
|
2
|
+
|
|
3
|
+
export default function NotFound() {
|
|
4
|
+
return (
|
|
5
|
+
<>
|
|
6
|
+
<title>404: This page could not be found.</title>
|
|
7
|
+
<div style={styles.error}>
|
|
8
|
+
<div>
|
|
9
|
+
<style
|
|
10
|
+
dangerouslySetInnerHTML={{
|
|
11
|
+
__html: `body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}`,
|
|
12
|
+
}}
|
|
13
|
+
/>
|
|
14
|
+
<h1 className="next-error-h1" style={styles.h1}>
|
|
15
|
+
404
|
|
16
|
+
</h1>
|
|
17
|
+
<div style={styles.desc}>
|
|
18
|
+
<h2 style={styles.h2}>This page could not be found.</h2>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const styles = {
|
|
27
|
+
error: {
|
|
28
|
+
fontFamily:
|
|
29
|
+
'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',
|
|
30
|
+
height: "100vh",
|
|
31
|
+
textAlign: "center",
|
|
32
|
+
display: "flex",
|
|
33
|
+
flexDirection: "column",
|
|
34
|
+
alignItems: "center",
|
|
35
|
+
justifyContent: "center",
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
desc: {
|
|
39
|
+
display: "inline-block",
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
h1: {
|
|
43
|
+
display: "inline-block",
|
|
44
|
+
margin: "0 20px 0 0",
|
|
45
|
+
padding: "0 23px 0 0",
|
|
46
|
+
fontSize: 24,
|
|
47
|
+
fontWeight: 500,
|
|
48
|
+
verticalAlign: "top",
|
|
49
|
+
lineHeight: "49px",
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
h2: {
|
|
53
|
+
fontSize: 14,
|
|
54
|
+
fontWeight: 400,
|
|
55
|
+
lineHeight: "49px",
|
|
56
|
+
margin: 0,
|
|
57
|
+
},
|
|
58
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { NextRequest } from 'next/server'
|
|
2
|
+
import { getRequestContext } from '@cloudflare/next-on-pages'
|
|
3
|
+
|
|
4
|
+
export const runtime = 'edge'
|
|
5
|
+
|
|
6
|
+
export async function GET(request: NextRequest) {
|
|
7
|
+
let responseText = 'Hello World'
|
|
8
|
+
|
|
9
|
+
// In the edge runtime you can use Bindings that are available in your application
|
|
10
|
+
// (for more details see:
|
|
11
|
+
// - https://developers.cloudflare.com/pages/framework-guides/deploy-a-nextjs-site/#use-bindings-in-your-nextjs-application
|
|
12
|
+
// - https://developers.cloudflare.com/pages/functions/bindings/
|
|
13
|
+
// )
|
|
14
|
+
//
|
|
15
|
+
// KV Example:
|
|
16
|
+
// const myKv = getRequestContext().env.MY_KV
|
|
17
|
+
// await myKv.put('suffix', ' from a KV store!')
|
|
18
|
+
// const suffix = await myKv.get('suffix')
|
|
19
|
+
// responseText += suffix
|
|
20
|
+
|
|
21
|
+
return new Response(responseText)
|
|
22
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export const runtime = "edge";
|
|
2
|
+
|
|
3
|
+
export default function NotFound() {
|
|
4
|
+
return (
|
|
5
|
+
<>
|
|
6
|
+
<title>404: This page could not be found.</title>
|
|
7
|
+
<div style={styles.error}>
|
|
8
|
+
<div>
|
|
9
|
+
<style
|
|
10
|
+
dangerouslySetInnerHTML={{
|
|
11
|
+
__html: `body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}`,
|
|
12
|
+
}}
|
|
13
|
+
/>
|
|
14
|
+
<h1 className="next-error-h1" style={styles.h1}>
|
|
15
|
+
404
|
|
16
|
+
</h1>
|
|
17
|
+
<div style={styles.desc}>
|
|
18
|
+
<h2 style={styles.h2}>This page could not be found.</h2>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const styles = {
|
|
27
|
+
error: {
|
|
28
|
+
fontFamily:
|
|
29
|
+
'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',
|
|
30
|
+
height: "100vh",
|
|
31
|
+
textAlign: "center",
|
|
32
|
+
display: "flex",
|
|
33
|
+
flexDirection: "column",
|
|
34
|
+
alignItems: "center",
|
|
35
|
+
justifyContent: "center",
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
desc: {
|
|
39
|
+
display: "inline-block",
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
h1: {
|
|
43
|
+
display: "inline-block",
|
|
44
|
+
margin: "0 20px 0 0",
|
|
45
|
+
padding: "0 23px 0 0",
|
|
46
|
+
fontSize: 24,
|
|
47
|
+
fontWeight: 500,
|
|
48
|
+
verticalAlign: "top",
|
|
49
|
+
lineHeight: "49px",
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
h2: {
|
|
53
|
+
fontSize: 14,
|
|
54
|
+
fontWeight: 400,
|
|
55
|
+
lineHeight: "49px",
|
|
56
|
+
margin: 0,
|
|
57
|
+
},
|
|
58
|
+
} as const;
|
package/templates/next/c3.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { join } from "path";
|
|
2
2
|
import { crash, updateStatus, warn } from "@cloudflare/cli";
|
|
3
3
|
import { processArgument } from "@cloudflare/cli/args";
|
|
4
4
|
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
5
|
+
import { spinner } from "@cloudflare/cli/interactive";
|
|
5
6
|
import { installPackages, runFrameworkGenerator } from "helpers/command";
|
|
6
7
|
import {
|
|
7
|
-
|
|
8
|
+
copyFile,
|
|
8
9
|
probePaths,
|
|
10
|
+
readFile,
|
|
9
11
|
readJSON,
|
|
10
12
|
usesEslint,
|
|
11
13
|
usesTypescript,
|
|
@@ -13,17 +15,7 @@ import {
|
|
|
13
15
|
writeJSON,
|
|
14
16
|
} from "helpers/files";
|
|
15
17
|
import { detectPackageManager } from "helpers/packages";
|
|
16
|
-
import {
|
|
17
|
-
apiAppDirHelloJs,
|
|
18
|
-
apiAppDirHelloTs,
|
|
19
|
-
apiPagesDirHelloJs,
|
|
20
|
-
apiPagesDirHelloTs,
|
|
21
|
-
appDirNotFoundJs,
|
|
22
|
-
appDirNotFoundTs,
|
|
23
|
-
envDts,
|
|
24
|
-
nextConfig,
|
|
25
|
-
readme,
|
|
26
|
-
} from "./templates";
|
|
18
|
+
import { getTemplatePath } from "../../src/templates";
|
|
27
19
|
import type { TemplateConfig } from "../../src/templates";
|
|
28
20
|
import type { C3Args, C3Context } from "types";
|
|
29
21
|
|
|
@@ -33,27 +25,37 @@ const generate = async (ctx: C3Context) => {
|
|
|
33
25
|
const projectName = ctx.project.name;
|
|
34
26
|
|
|
35
27
|
await runFrameworkGenerator(ctx, [projectName]);
|
|
28
|
+
|
|
29
|
+
copyFile(
|
|
30
|
+
join(getTemplatePath(ctx), "wrangler.toml"),
|
|
31
|
+
join(ctx.project.path, "wrangler.toml")
|
|
32
|
+
);
|
|
33
|
+
updateStatus("Created wrangler.toml file");
|
|
36
34
|
};
|
|
37
35
|
|
|
38
|
-
const
|
|
39
|
-
|
|
40
|
-
isTypescript: boolean
|
|
41
|
-
): [string, string] => {
|
|
42
|
-
const isAppDir = /\/app\/api$/.test(apiPath);
|
|
36
|
+
const updateNextConfig = () => {
|
|
37
|
+
const s = spinner();
|
|
43
38
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
const routeHandlerPath = `${apiPath}/hello`;
|
|
47
|
-
mkdirSync(routeHandlerPath, { recursive: true });
|
|
39
|
+
const configFile = "next.config.mjs";
|
|
40
|
+
s.start(`Updating \`${configFile}\``);
|
|
48
41
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
const configContent = readFile(configFile);
|
|
43
|
+
|
|
44
|
+
const updatedConfigFile =
|
|
45
|
+
`import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
|
|
46
|
+
|
|
47
|
+
// Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
|
|
48
|
+
// (when running the application with \`next dev\`), for more information see:
|
|
49
|
+
// https://github.com/cloudflare/next-on-pages/blob/5712c57ea7/internal-packages/next-dev/README.md
|
|
50
|
+
if (process.env.NODE_ENV === 'development') {
|
|
51
|
+
await setupDevPlatform();
|
|
52
|
+
}
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
`.replace(/\n\t*/g, "\n") + configContent;
|
|
55
|
+
|
|
56
|
+
writeFile(configFile, updatedConfigFile);
|
|
57
|
+
|
|
58
|
+
s.stop(`${brandColor(`updated`)} ${dim(`\`${configFile}\``)}`);
|
|
57
59
|
};
|
|
58
60
|
|
|
59
61
|
const configure = async (ctx: C3Context) => {
|
|
@@ -73,36 +75,13 @@ const configure = async (ctx: C3Context) => {
|
|
|
73
75
|
crash("Could not find the `/api` or `/app` directory");
|
|
74
76
|
}
|
|
75
77
|
|
|
76
|
-
// App directory template may not generate an API route handler, so we update the path to add an `api` directory.
|
|
77
|
-
const apiPath = path.replace(/\/app$/, "/app/api");
|
|
78
|
-
|
|
79
78
|
const usesTs = usesTypescript(ctx);
|
|
80
79
|
|
|
81
|
-
const appDirPath = probePaths([
|
|
82
|
-
`${projectPath}/src/app`,
|
|
83
|
-
`${projectPath}/app`,
|
|
84
|
-
]);
|
|
85
|
-
|
|
86
|
-
if (appDirPath) {
|
|
87
|
-
// Add a custom app not-found edge route as recommended in next-on-pages
|
|
88
|
-
// (see: https://github.com/cloudflare/next-on-pages/blob/2b5c8f25/packages/next-on-pages/docs/gotchas.md#not-found)
|
|
89
|
-
const notFoundPath = `${appDirPath}/not-found.${usesTs ? "tsx" : "js"}`;
|
|
90
|
-
if (!existsSync(notFoundPath)) {
|
|
91
|
-
const notFoundContent = usesTs ? appDirNotFoundTs : appDirNotFoundJs;
|
|
92
|
-
writeFile(notFoundPath, notFoundContent);
|
|
93
|
-
updateStatus("Created a custom edge not-found route");
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
const [handlerPath, handlerFile] = getApiTemplate(
|
|
98
|
-
apiPath,
|
|
99
|
-
usesTypescript(ctx)
|
|
100
|
-
);
|
|
101
|
-
writeFile(handlerPath, handlerFile);
|
|
102
|
-
updateStatus("Created an example API route handler");
|
|
103
|
-
|
|
104
80
|
if (usesTs) {
|
|
105
|
-
|
|
81
|
+
copyFile(
|
|
82
|
+
join(getTemplatePath(ctx), "env.d.ts"),
|
|
83
|
+
join(projectPath, "env.d.ts")
|
|
84
|
+
);
|
|
106
85
|
updateStatus("Created an env.d.ts file");
|
|
107
86
|
}
|
|
108
87
|
|
|
@@ -112,10 +91,12 @@ const configure = async (ctx: C3Context) => {
|
|
|
112
91
|
await writeEslintrc(ctx);
|
|
113
92
|
}
|
|
114
93
|
|
|
115
|
-
|
|
116
|
-
updateStatus("Updated the next.config.js file");
|
|
94
|
+
updateNextConfig();
|
|
117
95
|
|
|
118
|
-
|
|
96
|
+
copyFile(
|
|
97
|
+
join(getTemplatePath(ctx), "README.md"),
|
|
98
|
+
join(projectPath, "README.md")
|
|
99
|
+
);
|
|
119
100
|
updateStatus("Updated the README file");
|
|
120
101
|
|
|
121
102
|
await addDevDependencies(installEslintPlugin);
|
|
@@ -177,8 +158,42 @@ export default {
|
|
|
177
158
|
id: "next",
|
|
178
159
|
platform: "pages",
|
|
179
160
|
displayName: "Next",
|
|
161
|
+
devScript: "dev",
|
|
162
|
+
previewScript: "preview",
|
|
163
|
+
deployScript: "deploy",
|
|
180
164
|
generate,
|
|
181
165
|
configure,
|
|
166
|
+
copyFiles: {
|
|
167
|
+
async selectVariant(ctx) {
|
|
168
|
+
const isApp = probePaths([
|
|
169
|
+
`${ctx.project.path}/src/app`,
|
|
170
|
+
`${ctx.project.path}/app`,
|
|
171
|
+
]);
|
|
172
|
+
|
|
173
|
+
const isTypescript = usesTypescript(ctx);
|
|
174
|
+
|
|
175
|
+
const dir = isApp ? "app" : "pages";
|
|
176
|
+
return `${dir}/${isTypescript ? "ts" : "js"}`;
|
|
177
|
+
},
|
|
178
|
+
destinationDir(ctx) {
|
|
179
|
+
const srcPath = probePaths([`${ctx.project.path}/src`]);
|
|
180
|
+
return srcPath ? "./src" : "./";
|
|
181
|
+
},
|
|
182
|
+
variants: {
|
|
183
|
+
"app/ts": {
|
|
184
|
+
path: "./app/ts",
|
|
185
|
+
},
|
|
186
|
+
"app/js": {
|
|
187
|
+
path: "./app/js",
|
|
188
|
+
},
|
|
189
|
+
"pages/ts": {
|
|
190
|
+
path: "./pages/ts",
|
|
191
|
+
},
|
|
192
|
+
"pages/js": {
|
|
193
|
+
path: "./pages/js",
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
},
|
|
182
197
|
transformPackageJson: async () => {
|
|
183
198
|
const isNpm = npm === "npm";
|
|
184
199
|
const isBun = npm === "bun";
|
|
@@ -192,8 +207,8 @@ export default {
|
|
|
192
207
|
return {
|
|
193
208
|
scripts: {
|
|
194
209
|
"pages:build": `${pmCommand} ${nextOnPagesCommand}`,
|
|
195
|
-
|
|
196
|
-
|
|
210
|
+
preview: `${pagesBuildRunCommand} && wrangler pages dev .vercel/output/static`,
|
|
211
|
+
deploy: `${pagesBuildRunCommand} && wrangler pages deploy .vercel/output/static`,
|
|
197
212
|
},
|
|
198
213
|
};
|
|
199
214
|
},
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getRequestContext } from '@cloudflare/next-on-pages'
|
|
2
|
+
|
|
3
|
+
export const config = {
|
|
4
|
+
runtime: 'edge',
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export default async function handler(req) {
|
|
8
|
+
let responseText = 'Hello World'
|
|
9
|
+
|
|
10
|
+
// In the edge runtime you can use Bindings that are available in your application
|
|
11
|
+
// (for more details see:
|
|
12
|
+
// - https://developers.cloudflare.com/pages/framework-guides/deploy-a-nextjs-site/#use-bindings-in-your-nextjs-application
|
|
13
|
+
// - https://developers.cloudflare.com/pages/functions/bindings/
|
|
14
|
+
// )
|
|
15
|
+
//
|
|
16
|
+
// KV Example:
|
|
17
|
+
// const myKv = getRequestContext().env.MY_KV
|
|
18
|
+
// await myKv.put('suffix', ' from a KV store!')
|
|
19
|
+
// const suffix = await myKv.get('suffix')
|
|
20
|
+
// responseText += suffix
|
|
21
|
+
|
|
22
|
+
return new Response(responseText)
|
|
23
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { NextRequest } from 'next/server'
|
|
2
|
+
import { getRequestContext } from '@cloudflare/next-on-pages'
|
|
3
|
+
|
|
4
|
+
export const config = {
|
|
5
|
+
runtime: 'edge',
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export default async function handler(req: NextRequest) {
|
|
9
|
+
let responseText = 'Hello World'
|
|
10
|
+
|
|
11
|
+
// In the edge runtime you can use Bindings that are available in your application
|
|
12
|
+
// (for more details see:
|
|
13
|
+
// - https://developers.cloudflare.com/pages/framework-guides/deploy-a-nextjs-site/#use-bindings-in-your-nextjs-application
|
|
14
|
+
// - https://developers.cloudflare.com/pages/functions/bindings/
|
|
15
|
+
// )
|
|
16
|
+
//
|
|
17
|
+
// KV Example:
|
|
18
|
+
// const myKv = getRequestContext().env.MY_KV;
|
|
19
|
+
// await myKv.put('suffix', ' from a KV store!')
|
|
20
|
+
// const suffix = await myKv.get('suffix')
|
|
21
|
+
// responseText += suffix
|
|
22
|
+
|
|
23
|
+
return new Response(responseText)
|
|
24
|
+
}
|