5 lines
120 B
Bash
5 lines
120 B
Bash
#!/bin/sh
|
|
echo "Running database migrations..."
|
|
npx medusa db:migrate
|
|
echo "Starting Medusa server..."
|
|
npx medusa start
|