feat: integrate tinacms
This commit is contained in:
parent
659755e9c5
commit
62b2518590
12 changed files with 8602 additions and 89 deletions
4
.env
4
.env
|
@ -1,3 +1,5 @@
|
||||||
API_KEY_LASTFM=
|
API_KEY_LASTFM=
|
||||||
API_KEY_TRAKT=
|
API_KEY_TRAKT=
|
||||||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||||
|
TINA_CLIENT_ID=
|
||||||
|
TINA_TOKEN=
|
|
@ -5,6 +5,7 @@
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
"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",
|
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"lint:fix": "eslint . --fix",
|
"lint:fix": "eslint . --fix",
|
||||||
|
@ -37,6 +38,7 @@
|
||||||
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
|
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
|
||||||
"@tailwindcss/aspect-ratio": "^0.4.2",
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
||||||
"@tailwindcss/typography": "^0.5.1",
|
"@tailwindcss/typography": "^0.5.1",
|
||||||
|
"@tinacms/cli": "^1.5.6",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
||||||
"@typescript-eslint/parser": "^5.58.0",
|
"@typescript-eslint/parser": "^5.58.0",
|
||||||
"autoprefixer": "^10.4.2",
|
"autoprefixer": "^10.4.2",
|
||||||
|
@ -52,7 +54,8 @@
|
||||||
"markdownlint-cli": "^0.33.0",
|
"markdownlint-cli": "^0.33.0",
|
||||||
"marked": "^4.3.0",
|
"marked": "^4.3.0",
|
||||||
"tailwind-dracula": "^1.1.0",
|
"tailwind-dracula": "^1.1.0",
|
||||||
"tailwindcss": "^3.3.1"
|
"tailwindcss": "^3.3.1",
|
||||||
|
"tinacms": "^1.4.6"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"**/*.{js,ts,json}": [
|
"**/*.{js,ts,json}": [
|
||||||
|
|
|
@ -2,6 +2,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const MUSIC_KEY = process.env.API_KEY_LASTFM
|
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 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, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
|
|
|
@ -2,6 +2,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const MUSIC_KEY = process.env.API_KEY_LASTFM
|
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 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, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
|
|
|
@ -2,6 +2,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const KEY_CORYD = process.env.API_KEY_WEBMENTIONS_CORYD_DEV
|
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 url = `https://webmention.io/api/mentions.jf2?token=${KEY_CORYD}&per-page=1000`
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
|
|
2
src/admin/.gitignore
vendored
Normal file
2
src/admin/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
index.html
|
||||||
|
assets/
|
2
src/assets/admin/.gitignore
vendored
Normal file
2
src/assets/admin/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
index.html
|
||||||
|
assets/
|
2
src/assets/img/admin/.gitignore
vendored
Normal file
2
src/assets/img/admin/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
index.html
|
||||||
|
assets/
|
1
tina/.gitignore
vendored
Normal file
1
tina/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
__generated__
|
63
tina/config.ts
Normal file
63
tina/config.ts
Normal 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
1176
tina/tina-lock.json
Normal file
File diff suppressed because it is too large
Load diff
Reference in a new issue