Once you've created a project in Tina Cloud, the next step is to connect your site. Once connected, your project's editors will be able to save content directly to its GitHub repository, entirely from within your site.
In the Visual Editing doc, we showed you how the Tina context is setup on your site.
To have editing work in production, in the tina/config.<ts|js>
file, configure the clientId
to point to your Tina Cloud project, and add your generated token
.
// tina/config.ts
//...
export default defineConfig({
//...
token: '<Your Read Only Token>' // generated on app.tina.io,
clientId: '<Your Client ID>', // generated on app.tina.io
branch,
schema: {
collections: [
//...
// See https://tina.io/docs/schema/ for more info about "collections"
]}
})
Note ⚠️ If you're loading your schema config values from a local environment file, note that Tina's build process will only pickup `.env` files, (not `.env.local` or `.env.development` files)
Typically you'll want to use the branch that you're deploying with your site. This will vary depending on your host, but most will provide an environment variable of some sort that you can use.
// tina/config.ts
//...
+ const branch =
+ process.env.NEXT_PUBLIC_TINA_BRANCH ||
+ process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF ||
+ process.env.HEAD ||
+ ''
export default defineConfig({
//...
token: '<Your Read Only Token>' // generated on app.tina.io,
clientId: '<Your Client ID>', // generated on app.tina.io
branch,
schema: {
collections: [
//...
// See https://tina.io/docs/schema/ for more info about "collections"
]}
})
NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF
is Vercel's system environment variable that represents the branch that has made the deployment commit.HEAD
is the equivalent system environment variable used by Netlify.
Your fully configured tina/config.{js,ts}
should look something like this:
import { defineConfig } from 'tinacms'
const branch =
process.env.NEXT_PUBLIC_TINA_BRANCH ||
process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF ||
process.env.HEAD
export default defineConfig({
token: '<Your Read Only Token>' // generated on app.tina.io
clientId: '<Your Client ID>', // generated on app.tina.io
branch,
schema: {
// ...
},
})
The apiURL is configured to use the local Content API in development (to query your local files), and the hosted content API (with auth) in production.
The next step is to update your deployment configuration, so the TinaCMS admin gets built alongside your site. This allows your editors to enter the CMS through <your-site>/admin
(or your-site/admin/index.html
).
Here are some popular deployment options:
In Netlify, your build configuration can be updated at Settings > Build & Deploy > 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
Assuming that your Tina clientID
and token
are setup as environment variables, you will need to add those to the Netlify UI for your project. You can learn more about environment variables here
In Vercel, your build configuration can be updated at Settings > General > Build & Development Settings.
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 Vercel config is not running a custom build script (e.gnext build
instead ofnpm run build
), you would have to change this totinacms build && next build
Assuming that your Tina clientID
and token
are setup as environment variables, you will need to add those to the Vercel "Environment Variables" tab for your project.
GitHub Pages is a popular hosting option for static sites. GitHub Pages can be configured in
GitHub Pages offers a few build options:
We want to choose "GitHub Actions" so that we can control the build script, and make sure it's also building the TinaCMS admin
By clicking "Configure" on the action it's created for us, we can then tweak the build script to build tinacms along with our site.
Add the following step before your site's build step:
If you are using npm as your package name, you can use the following:
- name: Build TinaCMS
env:
TINA_PUBLIC_CLIENT_ID: ${{ secrets.TINA_PUBLIC_CLIENT_ID }}
TINA_TOKEN: ${{ secrets.TINA_TOKEN }}
run: npx tinacms build
or if you are using yarn:
- name: Build TinaCMS
env:
TINA_PUBLIC_CLIENT_ID: ${{ secrets.TINA_PUBLIC_CLIENT_ID }}
TINA_TOKEN: ${{ secrets.TINA_TOKEN }}
run: yarn build
# This assumes that your "build" script in your
# package.json is "tinacms build"
Your GitHub Action will look something like:
This error might occur from the following reasons:
Make sure that both the tinacms
& @tinacms/cli
dependencies are listed in your package.json.
If you are using npm make sure that npm ci
is being run before the TinaCMS build command. If you are using yarn, make sure you are running yarn install --frozen-lockfile
before running the build command.
If your CI is running something like yarn tinacms build
instead of npx tinacms build
, you'll need to add a custom script to your package.json:
"scripts": {
"tinacms": "tinacms",
// ...
This can happen for a number of reasons but here are the most common reasons and fixes:
If your site is deploying with GitHub Pages, it may be using GitHub's default build steps. In this case, TinaCMS won't be included in the build.
.
To fix this, you'll need to select the "GitHub Actions" source, and build the tinacms admin along with your site. You can see our GitHub Pages docs for help setting up this GitHub Action.
Check to make sure that the build command is running and not failing
Note: If you are using the github pages setup from hugo you will need to make sure that a
package-lock.json
exists in the root of your repo.
Assuming that your Tina clientID
and token
are setup as environment variables, you will need to add those to the GitHub Secrets for your project. The secrets we used in the code snippet above were TINA_PUBLIC_CLIENT_ID
& TINA_TOKEN
Resources
© TinaCMS 2019–2025