Hi everyone!

I started learning Rust a couple days ago and I’m having fun with it. I’m trying to learn both for fun but also I plan on going back to Uni at the end of this year after roughly 5 years out of education.

I’m trying to think of projects I can do down the line to practice and for fun. Something I really want to build is a full stack web app (I have some basic knowledge of front end.)

Since I’m trying to learn rust, I was thinking of using something like Actix to build the server.

As for database stuff, I was thinking of postgres since that seems very in demand rn!

As for front end, I’m torn between using something like React which I’m somewhat familiar with or trying something like Yew to write it all in Rust!

I mostly would like some feedback on my plan (I understand there aren’t many details given, this is mostly an idea a couple months down the line), if i need to change my scope, if theres anything I should change, any resources that might be helpful, or really any advice!

  • BehindTheBarrier
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    17 hours ago

    I made a super basic blog by hand using actix-web. Basic processing of markdown into HTML and then present it through handmade (and chatgpt assisted) html+css with htmx to spice things up and try to do mimic a single page application. I don’t have much web experience though, so much of it is crude.

    I don’t host myself yet, I used Shuttle which procides free hosting for hobby rust projects. It also comes with postgres so I have been looking into how to move from storing articles in files to a database for more consistent article support. Shuttle also supports other things than actix-web, so you don’t havr to use that specifically.

    While I said blog, I don’t support new articles without a redeploy yet… And it only has like 3 random articles based on reddit posts. But it works at least.

    https://handmade-blog.shuttleapp.rs/