For the most part, TinaCMS is framework-agnostic. Unless you're using "visual editing", the setup is mostly the same regardless of the site's framework.
We also have some guides tailored for some popular frameworks:
From within your site's directory, run:
npx @tinacms/cli@latest init
This will ask you a few setup questions.
When prompted for the "public assets directory", see our list of frameworks for help.
Depending on your framework, tina init
may try to update your package.json
scripts.
"scripts": {
"dev": "tinacms dev -c \"next dev\"",
"build": "tinacms build && next build",
"start": "tinacms build && next start"
}
These should be applied manually if they haven't been set by the CLI.
To edit your site's content in Tina, you can model your content in the tina/config.ts file.
Learn more about content modelling here
You can start TinaCMS with:
npx tinacms dev -c "<your-dev-process>"
<your-dev-process>
can be replaced with your site's custom dev command.
With TinaCMS running, navigate to http://localhost:3000/admin/index.html
^ The above default port may differ depending on your framework.
Hint: If you are getting error when running this command please see the Common Errors page.
At this point, you should be able to see the Tina admin, select a post, save changes, and see the changes persisted to your local markdown files.
If you want to power your pages with TinaCMS's API, and you're using a React-based framework, you may be able to leverage TinaCMS's visual editing features.
Read more about data fetching and visual editing.
Next we'll take you from editing with TinaCMS locally, to editing in production with your team.
Push your repo up to git, along with its new Tina configuration (including tina/__generated__
).
In production, we'll want to make sure only authorized users can access your Tina admin, and make changes to your content. You can set up a Tina Cloud project to handle this. A read-only content token will be automatically generated when the project is created.
See our Tina Cloud docs for help using Tina Cloud.
Locally, in your tina/config.js file, set the following config properties:
export default defineConfig({
// ...
- clientId: null,
+ clientId: "<your-tina-cloud-projects-client-id>",
- token: null,
+ token: "<your-tina-cloud-projects-token>"
You should apply the token above in an environment variable, instead of hard-coding it.
Tina's build will need to be a part of your site's static generation.
If you are using Netlify, this is configured in app.netlify.com/sites/<your-site-id>/settings/deploys
You should prepend yarn tinacms build &&
or npm run tinacms build &&
to your site's build command:
If your package.json has a "build" script like
tinacms build && <your-site-build-cmd>
, this likely doesn't need to be changed. If your Netlify config is not running a custom build script (e.gnext build
), you would have to change this totinacms build && next build
If your project has a
netlify.toml
with a build command set, that will take precedence over the above build command UI
For more information on deploying Tina with Netlify, Vercel, or GitHub Pages, see this doc
With that set, you should be able to push your config to Git and start editing on production at <your-site-url>/admin
!
Tip: If you have Netlify or Vercel previews set up, you can even edit on
<your-preview-url>/admin
.
Resources
© TinaCMS 2019–2025