You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+8-9
Original file line number
Diff line number
Diff line change
@@ -99,9 +99,8 @@ In order to debug a specific issue follow the next steps:
99
99
1. Replace `dev-test/config.yml` with the relevant `config.yml`. If you want to test the backend, make sure that the `backend` property of the config indicates which backend you use (Github, Gitlab, Bitbucket etc) and path to the repo.
100
100
101
101
```js
102
-
backend:
103
-
name: github
104
-
repo: owner-name/repo-name
102
+
backend: name: github;
103
+
repo: owner - name / repo - name;
105
104
```
106
105
107
106
2. Run `yarn dev`
@@ -111,14 +110,14 @@ backend:
111
110
112
111
When debugging the CMS with Git Gateway you must:
113
112
114
-
1. Have a Netlify site with [Git Gateway](https://docs.netlify.com/visitor-access/git-gateway/) and [Netlify Identity](https://docs.netlify.com/visitor-access/identity/) enabled. An easy way to create such a site is to use a [template](https://staticcms.org/docs/start-with-a-template/), for example the [Gatsby template](https://app.netlify.com/start/deploy?repository=https://github.com/AustinGreen/gatsby-starter-netlify-cms&stack=cms)
113
+
1. Have a Netlify site with [Git Gateway](https://docs.netlify.com/visitor-access/git-gateway/) and [Netlify Identity](https://docs.netlify.com/visitor-access/identity/) enabled. An easy way to create such a site is to use a [template](https://staticjscms.netlify.app/docs/start-with-a-template/), for example the [Gatsby template](https://app.netlify.com/start/deploy?repository=https://github.com/AustinGreen/gatsby-starter-netlify-cms&stack=cms)
115
114
2. Tell the CMS the URL of your Netlify site using a local storage item. To do so:
116
115
117
-
1. Open `http://localhost:8080/` in the browser
118
-
2. Open the Developer Console. Write the below command and press enter: `localStorage.setItem('netlifySiteURL', 'https://yourwebsiteurl.netlify.app/')`
119
-
3. To be sure, you can run this command as well: `localStorage.getItem('netlifySiteURL')`
120
-
4. Refresh the page
121
-
5. You should be able to log in via your Netlify Identity email/password
116
+
1. Open `http://localhost:8080/` in the browser
117
+
2. Open the Developer Console. Write the below command and press enter: `localStorage.setItem('netlifySiteURL', 'https://yourwebsiteurl.netlify.app/')`
118
+
3. To be sure, you can run this command as well: `localStorage.getItem('netlifySiteURL')`
119
+
4. Refresh the page
120
+
5. You should be able to log in via your Netlify Identity email/password
@@ -28,43 +29,43 @@ You setup a YAML config to describe the content model of your site, and typicall
28
29
29
30
When a user navigates to `/admin/` they'll be prompted to log in, and once authenticated they'll be able to create new content or edit existing content.
30
31
31
-
Read more about Static CMS [Core Concepts](https://staticcms.org/docs/intro/).
32
+
Read more about Static CMS [Core Concepts](https://staticjscms.netlify.app/docs/intro/).
32
33
33
34
# Installation and Configuration
34
35
35
36
The Static CMS can be used in two different ways.
36
37
37
38
- A Quick and easy install, that requires you to create a single HTML file and a configuration file. All the CMS JavaScript and CSS are loaded from a CDN.
38
-
To learn more about this installation method, refer to the [CDN Hosting Guide](https://staticcms.org/docs/add-to-your-site-cdn/)
39
+
To learn more about this installation method, refer to the [CDN Hosting Guide](https://staticjscms.netlify.app/docs/add-to-your-site-cdn/)
39
40
- A complete, more complex install, that gives you more flexibility but requires that you use a static site builder with a build system that supports npm packages.
40
-
To learn more about this installation method, refer to the [Bundling Guide](https://staticcms.org/docs/add-to-your-site-bundling/)
41
+
To learn more about this installation method, refer to the [Bundling Guide](https://staticjscms.netlify.app/docs/add-to-your-site-bundling/)
41
42
42
43
# Projects
43
44
44
-
|Name|Site/Demo|Status|Beta|
45
-
|---|---|---|---|
46
-
|[@staticcms/core](https://github.com/StaticJsCMS/static-cms/tree/main/packages/core)|[demo.staticcms.org](https://demo.staticcms.org/)|[](https://github.com/StaticJsCMS/static-cms/actions/workflows/build.yml)[](https://www.npmjs.com/package/@staticcms/core)|[](https://www.npmjs.com/package/@staticcms/core/v/next)|
47
-
|[@staticcms/app](https://github.com/StaticJsCMS/static-cms/tree/main/packages/app)|[demo.staticcms.org](https://demo.staticcms.org/)|[](https://github.com/StaticJsCMS/static-cms/actions/workflows/build.yml)[](https://www.npmjs.com/package/@staticcms/app)|[](https://www.npmjs.com/package/@staticcms/app/v/next)|
|[static-cms-proxy-server](https://github.com/StaticJsCMS/static-cms-proxy-server)|[](https://github.com/StaticJsCMS/static-cms-proxy-server/actions/workflows/build-and-test.yml)[](https://www.npmjs.com/package/@staticcms/proxy-server)|
|[static-cms-proxy-server](https://github.com/StaticJsCMS/static-cms-proxy-server)|[](https://github.com/StaticJsCMS/static-cms-proxy-server/actions/workflows/build-and-test.yml)[](https://www.npmjs.com/package/@staticcms/proxy-server)|
"site_title": "Static CMS | Open Source Content Management System",
5
5
"site_description": "Open source content management for your Git workflow. Use Static CMS with any static site generator for a faster and more flexible web project.",
0 commit comments