Skip to content

A Rust CRUD app for storing recipes, with Axum and Sqlx.

Notifications You must be signed in to change notification settings

andreweggleston/OxiDish

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OxiDish

Working repo for an app to organize and search recipes. The database is a cargo library, so it can be imported by different web framework "backends" as I experiment.

Current tasks:

  • more database tests (using #[sqlx::test])

Database schema:

recipes:

id title description search
integer varchar(255) varchar(65535) tsvector

-- the 'search' column is generated from the title and description columns (see 0002_recipes_search.sql).

recipe_ingredients:

id_recipe id_ingredient_name ingredient_amount
integer integer varchar(255)

ingredient_names:

id name
integer varchar(255)

About

A Rust CRUD app for storing recipes, with Axum and Sqlx.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published