Skip to content

guojiaxuan2001/GoWeb01

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kelly's Web APP 01: Full-Stack Blog System

A full-stack blogging platform built with Go (Gin) and Vue 3 (TypeScript). Features include user authentication (JWT), article posting, likes, exchange rates, Redis caching, and MySQL persistence. Fully containerized with Docker and ready for orchestration.


🌐 Docker Images


🧱 Tech Stack

Layer Technology
Frontend Vue 3, TypeScript, Vite
Backend Go, Gin, Gorm, JWT
Database MySQL
Cache Redis
Container Docker, Kubernetes (WIP)

🖥️ Local Development

Frontend

cd frontend
npm install
npm run dev

Backend

cd backend
go run .

Make sure MySQL and Redis are running locally or via Docker.

Run with Docker

Start MySQL and Redis (Docker Compose recommended)

docker-compose up -d redis mysql

Frontend

docker pull guojiaxuan2001/web01-frontend
docker run -d -p 80:80 guojiaxuan2001/web01-frontend

Backend

docker pull guojiaxuan2001/web01-backend
docker run -d -p 8080:8080 \
  --env-file .env \
  guojiaxuan2001/web01-backend

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors