11 lines
181 B
Bash
11 lines
181 B
Bash
|
#!/usr/bin/env bash
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
set -e
|
||
|
|
||
|
DATABASE_URL="$FIDDLE_DB_URL" diesel setup \
|
||
|
--migration-dir ./migrations \
|
||
|
--locked-schema
|
||
|
|
||
|
RUST_LOG=info ./bin/fiddle
|