Rocket/examples/todo
Sergio Benitez 4b6c72e33f Use move builder pattern to launch Rocket apps. 2016-10-03 19:48:33 -07:00
..
db Fully working todo example. Apparently didn't commit in a while. Need to be better at that. 2016-08-01 19:07:36 -07:00
migrations Fully working todo example. Apparently didn't commit in a while. Need to be better at that. 2016-08-01 19:07:36 -07:00
src Use move builder pattern to launch Rocket apps. 2016-10-03 19:48:33 -07:00
static Add request preprocessing for _method in forms. 2016-09-25 02:26:15 -07:00
templates Add request preprocessing for _method in forms. 2016-09-25 02:26:15 -07:00
Cargo.toml Update serde in examples. 2016-10-03 17:56:43 -07:00
README.md Added run notes to TODO. 2016-08-01 20:01:47 -07:00
bootstrap.sh Cache Cargo in Travis. 2016-09-30 15:39:55 -07:00

README.md

Rocket Todo Example

Before running this example, you'll need to ensure there's a database file present. You can do this with Diesel.

Running migration with Diesel

Just run the following commands in your shell:

cargo install diesel_cli # installs the diesel CLI tools
DATABASE_URL=db/db.sql diesel migration run # create db/db.sql