File tree Expand file tree Collapse file tree 6 files changed +555
-21
lines changed Expand file tree Collapse file tree 6 files changed +555
-21
lines changed Original file line number Diff line number Diff line change 1
- # deps
2
- /node_modules
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
3
2
4
- # generated content
5
- .contentlayer
6
- .content-collections
7
- .source
3
+ # dependencies
4
+ / node_modules
5
+ / .pnp
6
+ .pnp.js
8
7
9
- # test & build
8
+ # testing
10
9
/coverage
10
+
11
+ # next.js
11
12
/.next /
12
13
/out /
14
+
15
+ # production
13
16
/build
14
- * .tsbuildinfo
15
17
16
18
# misc
17
19
.DS_Store
18
20
* .pem
19
- / .pnp
20
- .pnp.js
21
+
22
+ # debug
21
23
npm-debug.log *
22
24
yarn-debug.log *
23
25
yarn-error.log *
24
26
25
- # others
27
+ # local env files
26
28
.env * .local
29
+
30
+ # vercel
27
31
.vercel
32
+
33
+ # typescript
34
+ * .tsbuildinfo
28
35
next-env.d.ts
29
36
37
+ # vscode
38
+ .vscode
39
+
40
+ # wrangler
41
+ .wrangler /
42
+ .dev.vars
43
+
44
+ # generated content
45
+ .contentlayer
46
+ .content-collections
47
+ .source
48
+
30
49
# sitemap
31
50
/public /sitemap.xml
32
51
Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ Open http://localhost:3000 with your browser to see the result.
17
17
18
18
## Content Management
19
19
20
+ ### Docs
21
+
22
+ Docs are written in MDX in the contents/docs folder.
23
+
20
24
### Fetching Blog Content
21
25
22
26
This project includes a script to fetch blog content and images from an S3-compatible storage (Wasabi):
Original file line number Diff line number Diff line change 11
11
"fetch-content" : " pnpm exec tsx ./scripts/fetch-content.mts" ,
12
12
"cleanup-content" : " pnpm exec tsx ./scripts/cleanup-content.mts" ,
13
13
"refresh-content" : " pnpm cleanup-content && pnpm fetch-content" ,
14
- "postinstall" : " fumadocs-mdx"
14
+ "postinstall" : " fumadocs-mdx" ,
15
+ "deploy" : " wrangler deploy" ,
16
+ "dev:wrangler" : " wrangler dev"
15
17
},
16
18
"dependencies" : {
17
19
"@next/third-parties" : " ^15.3.2" ,
50
52
"tailwindcss" : " ^4.1.5" ,
51
53
"tsx" : " ^4.19.4" ,
52
54
"tw-animate-css" : " ^1.2.9" ,
53
- "typescript" : " ^5.8.3"
55
+ "typescript" : " ^5.8.3" ,
56
+ "wrangler" : " ^4.20.3"
54
57
}
55
58
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " amical-www" ,
3
+ "compatibility_date" : " 2025-06-20" ,
4
+ "assets" : {
5
+ "directory" : " ./out"
6
+ }
7
+ }
You can’t perform that action at this time.
0 commit comments