Full-stack application in Rust: Quick start
jorgeortiz.dev·1d·
Discuss: r/rust
Flag this post

In the article introducing this series, I shared that I wanted to explore full-stack app development. In particular, I wanted to develop a full-stack application that helps people manage their checklists. Users will use a browser to connect to the front-end server, which, in turn, will use the API provided by the back-end server to access and modify the checklists.

This article is the first one describing what I am doing in Rust. I will cover project creation and structure, as well as build automation. We won’t have much of the application implemented by the end of this article, but it should be a good and helpful start. So buckle up and let’s get cracking!

Project structure and setup

First things first. Let’s initialize the project with the following commands on the shell. …

Similar Posts

Loading similar posts...