chore: point to new docs domain
This commit is contained in:
parent
84aefde858
commit
44389cb455
@ -111,7 +111,7 @@ backend:
|
|||||||
|
|
||||||
When debugging the CMS with Git Gateway you must:
|
When debugging the CMS with Git Gateway you must:
|
||||||
|
|
||||||
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)
|
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)
|
||||||
2. Tell the CMS the URL of your Netlify site using a local storage item. To do so:
|
2. Tell the CMS the URL of your Netlify site using a local storage item. To do so:
|
||||||
|
|
||||||
1. Open `http://localhost:8080/` in the browser
|
1. Open `http://localhost:8080/` in the browser
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
[staticjscms.netlify.app](https://staticjscms.netlify.app/)
|
[staticcms.org](https://staticcms.org/)
|
||||||
|
|
||||||
A CMS for static site generators. Give users a simple way to edit and add content to any site built with a static site generator.
|
A CMS for static site generators. Give users a simple way to edit and add content to any site built with a static site generator.
|
||||||
|
|
||||||
@ -22,16 +22,16 @@ You setup a YAML config to describe the content model of your site, and typicall
|
|||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
Read more about Static CMS [Core Concepts](https://staticjscms.netlify.app/docs/intro/).
|
Read more about Static CMS [Core Concepts](https://staticcms.org/docs/intro/).
|
||||||
|
|
||||||
# Installation and Configuration
|
# Installation and Configuration
|
||||||
|
|
||||||
The Static CMS can be used in two different ways.
|
The Static CMS can be used in two different ways.
|
||||||
|
|
||||||
- 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.
|
- 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.
|
||||||
To learn more about this installation method, refer to the [CDN Hosting Guide](https://staticjscms.netlify.app/docs/add-to-your-site-cdn/)
|
To learn more about this installation method, refer to the [CDN Hosting Guide](https://staticcms.org/docs/add-to-your-site-cdn/)
|
||||||
- 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.
|
- 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.
|
||||||
To learn more about this installation method, refer to the [Bundling Guide](https://staticjscms.netlify.app/docs/add-to-your-site-bundling/)
|
To learn more about this installation method, refer to the [Bundling Guide](https://staticcms.org/docs/add-to-your-site-bundling/)
|
||||||
|
|
||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
@ -158,7 +158,7 @@ const Header = ({
|
|||||||
)}
|
)}
|
||||||
{isTestRepo && (
|
{isTestRepo && (
|
||||||
<Button
|
<Button
|
||||||
href="https://staticjscms.netlify.app/docs/test-backend"
|
href="https://staticcms.org/docs/test-backend"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
sx={{ textTransform: 'none' }}
|
sx={{ textTransform: 'none' }}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
backend:
|
backend:
|
||||||
name: test-repo
|
name: test-repo
|
||||||
site_url: 'https://staticjscms.netlify.app/'
|
site_url: 'https://staticcms.org/'
|
||||||
media_folder: assets/uploads
|
media_folder: assets/uploads
|
||||||
locale: en
|
locale: en
|
||||||
collections:
|
collections:
|
||||||
|
File diff suppressed because one or more lines are too long
@ -15,7 +15,7 @@ Alternatively, you can specify a custom config file using a link tag:
|
|||||||
|
|
||||||
If you prefer, you can use a javascript file (`admin/config.js`) instead of a yaml file. Simply import the javascript config and pass it into your `CMS.init({ config })` call.
|
If you prefer, you can use a javascript file (`admin/config.js`) instead of a yaml file. Simply import the javascript config and pass it into your `CMS.init({ config })` call.
|
||||||
|
|
||||||
To see working configuration examples, you can [start from a template](/docs/start-with-a-template) or check out the [CMS demo site](https://demo-staticjscms.netlify.app/). (No login required: click the login button and the CMS will open.) You can refer to the demo [configuration code](https://github.com/StaticJsCMS/static-cms/blob/main/core/dev-test/config.yml) to see how each option was configured.
|
To see working configuration examples, you can [start from a template](/docs/start-with-a-template) or check out the [CMS demo site](https://demo-staticcms.org/). (No login required: click the login button and the CMS will open.) You can refer to the demo [configuration code](https://github.com/StaticJsCMS/static-cms/blob/main/core/dev-test/config.yml) to see how each option was configured.
|
||||||
|
|
||||||
You can find details about all configuration options below. Note that [YAML syntax](https://en.wikipedia.org/wiki/YAML#Basic_components) allows lists and objects to be written in block or inline style, and the code samples below include a mix of both.
|
You can find details about all configuration options below. Note that [YAML syntax](https://en.wikipedia.org/wiki/YAML#Basic_components) allows lists and objects to be written in block or inline style, and the code samples below include a mix of both.
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ At its core, Static CMS is an open-source React app that acts as a wrapper for t
|
|||||||
|
|
||||||
## Find out more
|
## Find out more
|
||||||
|
|
||||||
- Get a feel for the UI in the [demo site](https://demo-staticjscms.netlify.app/). (No login required. Click the login button to go straight to the CMS editor UI.)
|
- Get a feel for the UI in the [demo site](https://demo-staticcms.org/). (No login required. Click the login button to go straight to the CMS editor UI.)
|
||||||
- [Start with a template](/docs/start-with-a-template/) to make a Static CMS-enabled site of your own.
|
- [Start with a template](/docs/start-with-a-template/) to make a Static CMS-enabled site of your own.
|
||||||
- Configure your existing site by following a [tutorial](/docs/add-to-your-site/) or checking [configuration options](/docs/configuration-options).
|
- Configure your existing site by following a [tutorial](/docs/add-to-your-site/) or checking [configuration options](/docs/configuration-options).
|
||||||
- Ask questions and share ideas in the Static CMS [community chat](/chat).
|
- Ask questions and share ideas in the Static CMS [community chat](/chat).
|
||||||
|
@ -6,7 +6,7 @@ weight: 60
|
|||||||
|
|
||||||
- **Name**: `gitlab`
|
- **Name**: `gitlab`
|
||||||
|
|
||||||
You can use the `test-repo` backend to try out Static CMS without connecting to a Git repo. With this backend, you can write and publish content normally, but any changes will disappear when you reload the page. This backend powers the Static CMS [demo site](https://demo-staticjscms.netlify.app/).
|
You can use the `test-repo` backend to try out Static CMS without connecting to a Git repo. With this backend, you can write and publish content normally, but any changes will disappear when you reload the page. This backend powers the Static CMS [demo site](https://demo-staticcms.org/).
|
||||||
|
|
||||||
**Note:** The `test-repo` backend can't access your local file system, nor does it connect to a Git repo, thus you won't see any existing files while using it.
|
**Note:** The `test-repo` backend can't access your local file system, nor does it connect to a Git repo, thus you won't see any existing files while using it.
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ Widgets define the data type and interface for entry fields. Static CMS comes wi
|
|||||||
|
|
||||||
Widgets are specified as collection fields in the Static CMS `config` file. Note that [YAML syntax](https://en.wikipedia.org/wiki/YAML#Basic_components) allows lists and objects to be written in block or inline style, and the code samples below include a mix of both.
|
Widgets are specified as collection fields in the Static CMS `config` file. Note that [YAML syntax](https://en.wikipedia.org/wiki/YAML#Basic_components) allows lists and objects to be written in block or inline style, and the code samples below include a mix of both.
|
||||||
|
|
||||||
To see working examples of all of the built-in widgets, try making a 'Kitchen Sink' collection item on the [CMS demo site](https://demo-staticjscms.netlify.app/). (No login required: click the login button and the CMS will open.) You can refer to the demo [configuration code](https://github.com/StaticJsCMS/static-cms/blob/main/dev-test/config.yml) to see how each field was configured.
|
To see working examples of all of the built-in widgets, try making a 'Kitchen Sink' collection item on the [CMS demo site](https://demo-staticcms.org/). (No login required: click the login button and the CMS will open.) You can refer to the demo [configuration code](https://github.com/StaticJsCMS/static-cms/blob/main/dev-test/config.yml) to see how each field was configured.
|
||||||
|
|
||||||
## Available Widgets
|
## Available Widgets
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user