mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
12 lines
167 B
Bash
Executable file
12 lines
167 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
echo 'Entrypoint script'
|
|
cd /usr/src/app
|
|
|
|
# blank config, use defaults
|
|
test -e config.json || cat <<EOF > config.json
|
|
{
|
|
}
|
|
EOF
|
|
|
|
node dist/src/index.js
|