Display WordPress Posts on a Remix App

To get things started, I’m going to install the WPGraphQL plugin on this site (https://zalgorithm.com.) I’m not sure if that plugin is intended to be used on WordPress sites that can still be accessed normally, or if it’s only intended to be used on headless WordPress sites. This is low consequence web development. I’ll just test it out and see what happens.

Add a Header to the Site

I’m asking questions in my posts that I don’t have the answers to. I’d like to find a way to mark a section of text as a question. Maybe create a question custom post type? That could give me a list of questions at zalgorithm.com/questions

Adding a Database

In https://zalgorithm.com/hello-remix/ I created a Remix app with npx create-remix@latest. That creates a basic app, but doesn’t configure a database. The app doesn’t need a database but I’m going to set one up for the heck of it.

Steez(e)

Adventures with Remix continued. I’m going to try to add Tailwind to the app: https://remix.run/docs/en/main/styling/tailwind.

Hello Remix

This is my first attempt at getting a Remix application running on a VPS. I’m kind of following this: https://www.youtube.com/watch?v=pFxynNyz-QI. Just kind of following though. Don’t blame that tutorial for my mistakes.

Remix runtimes, adapters, templates and deployment

“Runtime” just means “execution environment”? I’ll go with that for now. I guess the issue is that each runtime (node, deno, etc) has varying support for the Web APIs that Remix uses. Remix runtime packages are used to fill in any missing features.

Learning Remix

If anyone’s reading this… maybe don’t. It’s just an attempt to make something stick in my brain. Remix is built on top of React Router: https://reactrouter.com/. How much do I need to know about React Router to make sense of it?