mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11ce07ec50
Add database migrations using 'east' GitOrigin-RevId: da067292e9db1fad050545858bc7cc39245d3395
10 lines
196 B
Bash
Executable file
10 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
|
|
if [ -f /.dockerenv ]; then
|
|
# I'm running inside docker
|
|
npm run migrations -- "$@"
|
|
else
|
|
${SCRIPTPATH}/run web_v2 bin/east "$@"
|
|
fi
|