Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffsee55/apfx
A Next.js site powered by TinaCMS and Tailwind UI
https://github.com/jeffsee55/apfx
nextjs tailwind tinacms
Last synced: 4 days ago
JSON representation
A Next.js site powered by TinaCMS and Tailwind UI
- Host: GitHub
- URL: https://github.com/jeffsee55/apfx
- Owner: jeffsee55
- Created: 2021-07-20T23:54:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-12T18:04:16.000Z (3 months ago)
- Last Synced: 2024-10-05T22:03:03.410Z (about 1 month ago)
- Topics: nextjs, tailwind, tinacms
- Language: CSS
- Homepage: https://apfx.vercel.app
- Size: 396 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Making changes to the content
### Edit the `.tina/schema.ts`
### Run `yarn zeus .tina/__generated__/schema.gql --ts` to update the Zues client with the new schema. The updated zues config will be viewable at `zeus/index.ts`.
### Update the query at `components/page.tsx` the new changes
## Working with local TinaCMS
Ensure your local TinaCMS repo has run `yarn build`
Drop this into your `package.json`:
```json
"resolutions": {
"tinacms": "portal:../tinacms/packages/tinacms",
"next-tinacms-cloudinary": "portal:../tinacms/packages/next-tinacms-cloudinary",
"@tinacms/cli": "portal:../tinacms/packages/@tinacms/cli",
"@tinacms/auth": "portal:../tinacms/packages/@tinacms/auth",
"@tinacms/scripts": "portal:../tinacms/packages/@tinacms/scripts",
"@tinacms/graphql": "portal:../tinacms/packages/@tinacms/graphql",
"@tinacms/toolkit": "portal:../tinacms/packages/@tinacms/toolkit"
}
```