Quick start
The fastest path from zero to a working Pages CMS setup.
Quick start
If you just want to try Pages CMS, use the hosted app.
- Go to app.pagescms.org.
- Sign in with GitHub.
- Install the GitHub App on the account or organization that owns your repository.
- Open the repository you want to edit.
- Create
.pages.ymlwhen prompted. - Start editing.
Minimal config
Use this as a first working config:
media: media
content:
- name: pages
label: Pages
type: collection
path: docs
fields:
- name: title
type: string
- name: body
type: rich-text
This gives you:
- one media folder at
media/, - one editable collection at
docs/, - a
titlefield, - a rich-text
bodyfield.
What to do next
- Add more fields.
- Configure media storage.
- Adjust filenames and collection view.