You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
446 B
18 lines
446 B
#!/bin/sh
|
|
set -e
|
|
|
|
# 数据库文件路径(可根据实际环境调整)
|
|
DB_FILE=./database/db.sqlite3
|
|
|
|
# 如果数据库文件不存在,先 migrate 再 seed
|
|
if [ ! -f "$DB_FILE" ]; then
|
|
echo "Database not found, running migration and seed..."
|
|
bun run npx knex migrate:latest
|
|
bun run npx knex seed:run
|
|
else
|
|
echo "Database exists, running migration only..."
|
|
bun run npx knex migrate:latest
|
|
fi
|
|
|
|
# 启动主服务
|
|
exec bun src/main.js
|
|
|