Skip to content

Commit 54eb7c9

Browse files
authored
Next.js, Sanity CMS, Algolia Search (#586)
Here we go again, new framework time.
1 parent 11a017a commit 54eb7c9

File tree

2,012 files changed

+44170
-67881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,012 files changed

+44170
-67881
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignoring generated files
2+
./sanity.types.ts

.eslintrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "next/core-web-vitals",
3+
"root": true
4+
}

.github/holopin.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/syndicate.yml

Lines changed: 0 additions & 102 deletions
This file was deleted.

.gitignore

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/studio/node_modules
6+
/.pnp
7+
.pnp.js
8+
.yarn/install-state.gz
9+
10+
# testing
11+
/coverage
12+
13+
# next.js
14+
/.next/
15+
/out/
16+
17+
# sanity
18+
/.sanity/
19+
/dist/
20+
21+
# misc
122
.DS_Store
2-
node_modules
23+
*.pem
24+
25+
# debug
26+
npm-debug.log*
27+
yarn-debug.log*
28+
yarn-error.log*
29+
30+
# local env files
31+
.env*.local
32+
33+
# vercel
34+
.vercel
35+
36+
# typescript
37+
*.tsbuildinfo
38+
next-env.d.ts
39+
40+
# Env files created by scripts for working locally
341
.env
4-
.env.*
5-
!.env.example
42+
.env.local

.idx/dev.nix

Lines changed: 0 additions & 44 deletions
This file was deleted.

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ignoring generated files
2+
./sanity.types.ts
3+
./schema.json

.vscode/launch.json

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"name": "CodingCat server",
6-
"cwd": "${workspaceFolder}/apps/codingcatdev",
7-
"request": "launch",
8-
"runtimeArgs": ["run-script", "dev"],
9-
"runtimeExecutable": "pnpm",
10-
"skipFiles": ["<node_internals>/**"],
11-
"type": "node",
12-
"console": "integratedTerminal"
13-
},
14-
{
15-
"name": "CodingCat client",
16-
"request": "launch",
17-
"type": "chrome",
18-
"url": "http://localhost:5173",
19-
"webRoot": "${workspaceFolder}/apps/codingcatdev"
20-
}
21-
],
22-
"compounds": [
23-
{
24-
"name": "CodingCat Full",
25-
"configurations": ["CodingCat server", "CodingCat client"]
26-
}
27-
]
28-
}
2+
"version": "0.2.0",
3+
"runtimeArgs": ["--preserve-symlinks"],
4+
"configurations": [
5+
{
6+
"name": "Next.js: debug server-side",
7+
"type": "node-terminal",
8+
"request": "launch",
9+
"command": "npm run dev"
10+
},
11+
{
12+
"name": "Next.js: debug client-side",
13+
"type": "chrome",
14+
"request": "launch",
15+
"url": "http://localhost:3000"
16+
},
17+
{
18+
"name": "Next.js: debug full stack",
19+
"type": "node-terminal",
20+
"request": "launch",
21+
"command": "npm run dev",
22+
"serverReadyAction": {
23+
"pattern": "- Local:.+(https?://.+)",
24+
"uriFormat": "%s",
25+
"action": "debugWithChrome"
26+
}
27+
}
28+
]
29+
}

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)