mirror of
https://github.com/chartdb/chartdb.git
synced 2026-01-07 12:19:55 -06:00
8 lines
190 B
Bash
8 lines
190 B
Bash
#!/bin/sh
|
|
|
|
# Replace placeholders in nginx.conf
|
|
envsubst '${OPENAI_API_KEY}' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf
|
|
|
|
# Start Nginx
|
|
nginx -g "daemon off;"
|