Back to blog
Building-Redoed
Redoed #5: Building a Markdown editor with CodeMirror and React
Redoed needs a clean and efficient way to handle rich text editing, so I'm using CodeMirror for the editor and React Markdown for the preview
react frontend
Redoed #4: Building the Document CRUD API
In this post, we implement the CRUD API for managing documents in Redoed. We cover repository functions, HTTP handlers, and routing.
go backend
Redoed #3: Connecting Go Server to PostgreSQL with GORM
Integrating PostgreSQL with a Go server using GORM. This post covers setting up the database connection, defining models, running migrations, and ensuring the database is ready when the server starts.
go backend postgresql
Redoed #2: Containerizing the Go Server and PostgreSQL with Docker
Using Docker Compose to containerize a Go server and PostgreSQL
docker postgresql
Redoed #1: Setting Up a Basic HTTP Server in Go
This is the first step in building Redoed, a real-time collaborative Markdown editor. Learn how to set up a basic HTTP server in Go using the standard library
go backend