Skip to content

Commit e601790

Browse files
committed
add sanity beta
1 parent cbfeb06 commit e601790

File tree

16 files changed

+12838
-0
lines changed

16 files changed

+12838
-0
lines changed

pnpm-lock.yaml

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-sanity-beta/.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@sanity/eslint-config-studio"
3+
}

test-sanity-beta/.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# Dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# Compiled Sanity Studio
9+
/dist
10+
11+
# Temporary Sanity runtime, generated by the CLI on every dev server start
12+
/.sanity
13+
14+
# Logs
15+
/logs
16+
*.log
17+
18+
# Coverage directory used by testing tools
19+
/coverage
20+
21+
# Misc
22+
.DS_Store
23+
*.pem
24+
25+
# Typescript
26+
*.tsbuildinfo

test-sanity-beta/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Sanity Blogging Content Studio
2+
3+
Congratulations, you have now installed the Sanity Content Studio, an open source real-time content editing environment connected to the Sanity backend.
4+
5+
Now you can do the following things:
6+
7+
- [Read “getting started” in the docs](https://www.sanity.io/docs/introduction/getting-started?utm_source=readme)
8+
- Check out the example frontend: [React/Next.js](https://github.com/sanity-io/tutorial-sanity-blog-react-next)
9+
- [Read the blog post about this template](https://www.sanity.io/blog/build-your-own-blog-with-sanity-and-next-js?utm_source=readme)
10+
- [Join the community Slack](https://slack.sanity.io/?utm_source=readme)
11+
- [Extend and build plugins](https://www.sanity.io/docs/content-studio/extending?utm_source=readme)

test-sanity-beta/package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "test-sanity-beta",
3+
"private": true,
4+
"version": "1.0.0",
5+
"main": "package.json",
6+
"license": "UNLICENSED",
7+
"scripts": {
8+
"start": "sanity start --host=0.0.0.0 --port=4848",
9+
"build": "sanity build"
10+
},
11+
"keywords": [
12+
"sanity"
13+
],
14+
"dependencies": {
15+
"@sanity/eslint-config-studio": "^2.0.0",
16+
"eslint": "^8.6.0",
17+
"prettier": "^2.7.1",
18+
"react": "^17.0.0",
19+
"react-dom": "^17.0.0",
20+
"sanity": "dev-preview",
21+
"styled-components": "^5.2.0"
22+
},
23+
"devDependencies": {},
24+
"prettier": {
25+
"semi": false,
26+
"printWidth": 100,
27+
"bracketSpacing": false,
28+
"singleQuote": true
29+
}
30+
}

0 commit comments

Comments
 (0)