Rocket/examples/todo
jeb ae3d9bb664 Fix compatibility warnings and errors in examples. 2018-07-28 18:16:53 -07:00
..
db Add file to preserve empty db directory. 2018-05-29 15:47:33 +02:00
migrations Update docs and examples for diesel 1.0.0-rc1. 2018-01-03 01:46:22 -08:00
src Fix compatibility warnings and errors in examples. 2018-07-28 18:16:53 -07:00
static Rename '#[error]' to '#[catch]', 'errors!' to 'catchers!'. 2018-07-02 12:58:43 -07:00
Cargo.toml Fix compatibility warnings and errors in examples. 2018-07-28 18:16:53 -07:00
README.md Use diesel_cli <= 1.2. 2018-05-29 15:26:14 +02:00
Rocket.toml Add the [global] psuedo-environment for global configuration. 2016-10-31 17:00:32 +01:00
bootstrap.sh Use diesel_cli <= 1.2. 2018-05-29 15:26:14 +02:00

README.md

Rocket Todo Example

This example makes use of a SQLite database via diesel to store todo tasks. As a result, you'll need to have sqlite3 and its headers installed:

  • OS X: brew install sqlite
  • Debian/Ubuntu: apt-get install libsqlite3-dev
  • Arch: pacman -S sqlite

Running

Before running, building, or testing this example, you'll need to ensure that a SQLite database file with the proper schema is present.

On a Unix machine or with bash installed, you can simply run the boostrap.sh script to create the database. The script installs the diesel_cli tools if they're not already installed and runs the migrations.

You can also install the Diesel CLI and run the migrations manually with the following commands:

# install Diesel CLI tools
cargo install diesel_cli --version '<= 1.2' --no-default-features --features=sqlite

# create db/db.sql
diesel migration run --database-url="db/db.sql"