5 lines
130 B
Bash
5 lines
130 B
Bash
#!/bin/sh
|
|
echo "Running database migrations..."
|
|
npx medusa db:migrate
|
|
echo "Starting Medusa server..."
|
|
exec npx medusa start 2>&1
|