ffb5bbaf39
Also, proper database migrations and an attempt to make things work on travis.
8 lines
200 B
YAML
8 lines
200 B
YAML
language: rust
|
|
services:
|
|
- postgresql
|
|
before_script:
|
|
- psql -c 'create database fandjango;' -U postgres
|
|
- echo "DATABASE_URL='postgres://postgres@localhost/rphotos'" > .env
|
|
- diesel migration run
|