Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.33 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.33 KB

A Rust Fullstack Todo Application

You can try it here, and I also write a blog about it.

  • development by TDD
  • all Rust code in frontend and backend with share code

Getting Started

Requirement

Start backend

# 1. setup local postgres in docker
$ cd backend && docker-compose up -d

# 2. start backend
$ cd backend && cargo run 

# 3. start backend (another way)
$ cargo run --bin backend

Start frontend

$ cd frontend && trunk serve

How it built

Thanks for the open source.

Backend

Frontend