#rest-api
Read more stories on Hashnode
Articles with this tag
We saw how the creation process of the data modelling, entity generation, repository layer, API handler and the main function which is where...
Let's create the final module of this series, the handler. Create a folder handler under src and it was have... you guessed it ! 3 files: todos.rs use...
Let's setup Actix and for the purpose of the future freshness of the article, we will be using the beta version of the actix-web crate and soon the...
Now that we have created the database, schema and the entities let's go ahead and create the repositories which will use the entities to interact with...
Now that we have something to work on top of, we can generate the entities from our schema. Yes, you read that right 😄 With the run of a single...
In this part, let us go through and setup the database with the necessary dependencies added to our project and create database, table & migration....