Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Next.js, Sanity CMS, Algolia Search #586

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Ignoring generated files
./sanity.types.ts
4 changes: 4 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "next/core-web-vitals",
"root": true
}
6 changes: 0 additions & 6 deletions .github/holopin.yml

This file was deleted.

102 changes: 0 additions & 102 deletions .github/workflows/syndicate.yml

This file was deleted.

43 changes: 40 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/studio/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# sanity
/.sanity/
/dist/

# misc
.DS_Store
node_modules
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# Env files created by scripts for working locally
.env
.env.*
!.env.example
.env.local
44 changes: 0 additions & 44 deletions .idx/dev.nix

This file was deleted.

3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ignoring generated files
./sanity.types.ts
./schema.json
55 changes: 28 additions & 27 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "CodingCat server",
"cwd": "${workspaceFolder}/apps/codingcatdev",
"request": "launch",
"runtimeArgs": ["run-script", "dev"],
"runtimeExecutable": "pnpm",
"skipFiles": ["<node_internals>/**"],
"type": "node",
"console": "integratedTerminal"
},
{
"name": "CodingCat client",
"request": "launch",
"type": "chrome",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/apps/codingcatdev"
}
],
"compounds": [
{
"name": "CodingCat Full",
"configurations": ["CodingCat server", "CodingCat client"]
}
]
}
"version": "0.2.0",
"runtimeArgs": ["--preserve-symlinks"],
"configurations": [
{
"name": "Next.js: debug server-side",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev"
},
{
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: debug full stack",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"serverReadyAction": {
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
}
]
}
5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

Loading