feat: integrate tinacms

This commit is contained in:
Cory Dransfeldt 2023-04-18 13:15:00 -07:00
parent 659755e9c5
commit 62b2518590
No known key found for this signature in database
12 changed files with 8602 additions and 89 deletions

2
.env
View file

@ -1,3 +1,5 @@
API_KEY_LASTFM=
API_KEY_TRAKT=
API_KEY_WEBMENTIONS_CORYD_DEV=
TINA_CLIENT_ID=
TINA_TOKEN=

View file

@ -5,6 +5,7 @@
"main": "index.html",
"scripts": {
"start": "eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
"tina": "tinacms dev -c 'eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch'",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
@ -37,6 +38,7 @@
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.1",
"@tinacms/cli": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "^10.4.2",
@ -52,7 +54,8 @@
"markdownlint-cli": "^0.33.0",
"marked": "^4.3.0",
"tailwind-dracula": "^1.1.0",
"tailwindcss": "^3.3.1"
"tailwindcss": "^3.3.1",
"tinacms": "^1.4.6"
},
"lint-staged": {
"**/*.{js,ts,json}": [

View file

@ -2,6 +2,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const MUSIC_KEY = process.env.API_KEY_LASTFM
if (!MUSIC_KEY) return
const url = `http://ws.audioscrobbler.com/2.0/?method=user.gettopalbums&user=cdme_&api_key=${MUSIC_KEY}&limit=8&format=json&period=7day`
const res = EleventyFetch(url, {
duration: '1h',

View file

@ -2,6 +2,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const MUSIC_KEY = process.env.API_KEY_LASTFM
if (!MUSIC_KEY) return
const url = `http://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=cdme_&api_key=${MUSIC_KEY}&limit=8&format=json&period=7day`
const res = EleventyFetch(url, {
duration: '1h',

View file

@ -2,6 +2,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const KEY_CORYD = process.env.API_KEY_WEBMENTIONS_CORYD_DEV
if (!KEY_CORYD) return
const url = `https://webmention.io/api/mentions.jf2?token=${KEY_CORYD}&per-page=1000`
const res = EleventyFetch(url, {
duration: '1h',

2
src/admin/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
index.html
assets/

2
src/assets/admin/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
index.html
assets/

2
src/assets/img/admin/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
index.html
assets/

1
tina/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
__generated__

63
tina/config.ts Normal file
View file

@ -0,0 +1,63 @@
import { defineConfig } from 'tinacms'
// Your hosting provider likely exposes this as an environment variable
const branch = process.env.HEAD || process.env.VERCEL_GIT_COMMIT_REF || 'main'
export default defineConfig({
branch,
clientId: process.env.TINA_CLIENT_ID || '',
token: process.env.TINA_TOKEN || '',
build: {
outputFolder: 'admin',
publicFolder: 'src/assets/img',
},
media: {
tina: {
mediaRoot: '',
publicFolder: 'src/assets/img',
},
},
schema: {
collections: [
{
name: 'post',
label: 'Posts',
path: 'src/posts',
fields: [
{
type: 'string',
name: 'title',
label: 'Title',
isTitle: true,
required: true,
},
{
type: 'datetime',
name: 'date',
label: 'Date',
required: true,
},
{
type: 'boolean',
name: 'draft',
label: 'Draft',
required: true,
},
{
type: 'string',
name: 'tags',
label: 'Tags',
required: false,
},
{
type: 'rich-text',
name: 'body',
label: 'Body',
isBody: true,
},
],
},
],
},
})

1176
tina/tina-lock.json Normal file

File diff suppressed because it is too large Load diff

7433
yarn.lock

File diff suppressed because it is too large Load diff