Rocket/examples/todo
Sergio Benitez cb18954ef2 Use 'StaticFiles' in todo example. 2018-08-24 14:00:36 -07:00
..
db Add file to preserve empty db directory. 2018-05-29 18:55:25 +02:00
migrations Update docs and examples for diesel 1.0.0-rc1. 2018-01-03 01:38:05 -08:00
src Use 'StaticFiles' in todo example. 2018-08-24 14:00:36 -07:00
static Rename '#[error]' to '#[catch]', 'errors!' to 'catchers!'. 2017-09-22 19:04:14 -07:00
Cargo.toml Use 'StaticFiles' in todo example. 2018-08-24 14:00:36 -07:00
README.md Clean up connection pooling documentation. 2018-08-15 23:31:49 -07:00
Rocket.toml Implement connection pooling support in contrib. 2018-08-15 22:11:53 -07:00
bootstrap.sh Clean up connection pooling documentation. 2018-08-15 23:31:49 -07: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.sqlite
diesel migration run --database-url="db/db.sqlite"