Tina CMS is a Git-backed headless content management system.
To get started, you’ll need an existing Astro project.
Run the following command to install Tina into your Astro project.
After this has finished, you should now have a .tina
folder in the root of your project and an admin
folder in your public directory. It will also create a Markdown file at content/posts/hello-world.md
.
Change the dev
script in package.json
:
TinaCMS is now set up in local mode. Test this by running the dev
script, then navigating to /admin/index.html#/collections/post
.
Editing the “Hello, World!” post will update the content/posts/hello-world.md
file in your project directory.
Set up your Tina collections by editing the schema.collections
property in .tina/config.ts
.
For example, you can add a required “date posted” frontmatter property to our posts:
Learn more about Tina collections in the Tina docs.
In production, TinaCMS can commit changes directly to your GitHub repository. To set up TinaCMS for production, you can choose to use Tina Cloud or self-host the Tina Data Layer. You can read more about registering for Tina Cloud in the Tina Docs.
© 2021 Fred K. Schott
Licensed under the MIT License.
https://docs.astro.build/en/guides/cms/tina-cms/