mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
f0e059c814
- upgrades sqlx to 0.6 - fixes sqlite_dev_setup.sh script - adds ci to test the script
15 lines
578 B
Bash
Executable File
15 lines
578 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run this script from the swap dir
|
|
# make sure you have sqlx-cli installed: cargo install sqlx-cli
|
|
|
|
# this script creates a temporary sqlite database
|
|
# then runs the migration scripts to create the tables (migrations folder)
|
|
# then it prepares the offline sqlx-data.json rust mappings
|
|
DATABASE_URL=sqlite:tempdb cargo sqlx database create
|
|
DATABASE_URL=sqlite:tempdb cargo sqlx migrate run
|
|
# needs the absolute path here
|
|
# https://github.com/launchbadge/sqlx/issues/1399
|
|
DB_PATH=$(readlink -f tempdb)
|
|
DATABASE_URL="sqlite:$DB_PATH" cargo sqlx prepare -- --bin swap
|