1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/basics/todo
2023-10-29 01:18:40 +01:00
..
migrations use sqlite in basics/todo 2022-02-06 07:55:51 +00:00
src update dotenv::dotenv references 2023-10-29 01:18:40 +01:00
static Restructure folders (#411) 2021-02-26 00:57:58 +00:00
templates Restructure folders (#411) 2021-02-26 00:57:58 +00:00
.env use sqlite in basics/todo 2022-02-06 07:55:51 +00:00
.gitignore use sqlite in basics/todo 2022-02-06 07:55:51 +00:00
Cargo.toml migrate to dotenvy 2023-10-29 01:17:49 +01:00
README.md ci: fix sqlx test 2023-07-09 02:08:43 +01:00

Todo

A simple Todo project using a SQLite database.

Prerequisites

  • SQLite 3

Change Into The Examples Workspace Root Directory

All instructions assume you have changed into the examples workspace root:

$ pwd
.../examples

Set Up The Database

Install the sqlx command-line tool with the required features:

cargo install sqlx-cli --no-default-features --features=rustls,sqlite

Then to create and set-up the database run:

sqlx database create --database-url=sqlite://./todo.db
sqlx migrate run --database-url=sqlite://./todo.db

Run The Application

Start the application with:

cargo run --bin=todo

The app will be viewable in the browser at http://localhost:8080.

Modifying The Example Database

For simplicity, this example uses SQLx's offline mode. If you make any changes to the database schema, this must be turned off or the sqlx-data.json file regenerated using the following command:

cargo sqlx prepare --database-url=sqlite://./todo.db