mirror of
https://github.com/tmdinosaurcenter/kiosk-guestbook.git
synced 2025-04-23 04:12:27 -06:00
8 lines
338 B
Bash
8 lines
338 B
Bash
#!/bin/sh
|
|
# Process index.html.template to create index.html
|
|
# Adjust the path if your template is located somewhere else
|
|
envsubst < /app/templates/index.html.template > /app/templates/index.html
|
|
|
|
# Start Gunicorn; using an environment variable for workers (default is 3)
|
|
exec gunicorn --bind 0.0.0.0:8000 app:app --workers ${WORKERS:-3}
|