mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
8 lines
227 B
Bash
8 lines
227 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Wait 60 seconds for SQL Server to start up
|
|
sleep 60
|
|
|
|
# Run the setup script to create the DB and the schema in the DB
|
|
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -d master -i setup.sql
|