14 lines
133 B
Bash
Executable File
14 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
rm -rf /s /q .next
|
|
rm -rf /s /q node_modules/*
|
|
|
|
yarn
|
|
yarn build
|
|
|
|
node ./db_seed/seed_all.js
|
|
|
|
yarn start
|