TinaCMS can be added to your Remix site locally. In this doc, we'll guide through the local setup, as well as editing on your production site.
You can reference our Tina Remix Starter for an example.
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", enter: public.
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 "remix dev"
remix dev
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.
Tina offers an easy-to-use client for data-fetching your content.
Read more about data fetching here.
For pages powered by Tina's content API, your pages with TinaCMS's you may want to leverage TinaCMS's visual editing features.
Read more about visual editing.
Note: Visual Editing with Remix is considered experimental.
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.gremix build
), you would have to change this totinacms build && remix 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