mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
12 lines
224 B
Bash
12 lines
224 B
Bash
#!/usr/bin/dumb-init /bin/sh
|
|
|
|
# Integrate environment variables
|
|
sed -i "s|__BACKEND__|${BACKEND_HOST}|" \
|
|
/etc/nginx/nginx.conf
|
|
|
|
# Start server
|
|
nginx&
|
|
|
|
# Watch source for changes and build app
|
|
npm run watch -- --polling
|