Introduction

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.

Getting Started

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.

Model your content

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

Starting TinaCMS

You can start TinaCMS with:

npx tinacms dev -c "remix dev"

remix devcan 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.

Data-fetching in your pages

Tina offers an easy-to-use client for data-fetching your content.

Read more about data fetching here.

Setting up Visual Editing (Optional)

For pages powered by Tina's content API, your pages with TinaCMS's you may want to leverage TinaCMS's visual editing features.

block-based-editing-visual

Read more about visual editing.

Note: Visual Editing with Remix is considered experimental.

Deploy Tina to your site

Next we'll take you from editing with TinaCMS locally, to editing in production with your team.

Step 1) Push your repo to git

Push your repo up to git, along with its new Tina configuration (including tina/__generated__).

Step 2) Setup a Tina Cloud project

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.

Step 3) Connect the Tina Cloud config to your site

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.

Step 4) Configure build commands

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.g remix build), you would have to change this to tinacms 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

Step 5) Start using Tina!

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.

Stay in touch 👉