rnotes-online/entrypoint.sh

9 lines
130 B
Bash

#!/bin/sh
set -e
# Start the Yjs sync server in the background
node sync-server/index.js &
# Start the Next.js server
exec "$@"