- Create Dockerfile for Nginx with envsubst for dynamic configuration. - Add djmaster.conf.template for Nginx configuration with upstream services. - Implement docker-entrypoint.sh to substitute environment variables in the Nginx config. - Add README.md in nginx-examples for guidance on using the Nginx template. - Include djmaster.conf.template in nginx-examples for local setup. - Introduce utility functions for fetching YouTube video snippets and titles.
32 lines
390 B
Plaintext
32 lines
390 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/NONPUBLIC
|
|
node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
.yarn/
|
|
# testing
|
|
/coverage
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
NONPUBLIC
|
|
.DS_Store
|
|
.VSCodeCounter
|
|
.env
|
|
.env.development.local
|
|
.env.local
|
|
.env.production.local
|
|
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
messages.mo
|
|
.eslintcache
|
|
.idea/
|
|
.playwright-mcp/
|