IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
899B

  1. #!/bin/sh
  2. mkdir -p /cookiecutter/output/meta && \
  3. cp -v /cookiecutter/input/meta/cookiecutter.json \
  4. /cookiecutter/output/meta/cookiecutter.json && \
  5. \
  6. cp -v /cookiecutter/input/nginx-http/nginx.conf \
  7. /cookiecutter/templates/nginx-http/\{\{cookiecutter.directory_name\}\}/nginx.conf && \
  8. cp -v /cookiecutter/input/meta/cookiecutter.json \
  9. /cookiecutter/templates/nginx-http/cookiecutter.json && \
  10. \
  11. cp -v /cookiecutter/input/nginx-https/nginx.conf \
  12. /cookiecutter/templates/nginx-https/\{\{cookiecutter.directory_name\}\}/nginx.conf && \
  13. cp -v /cookiecutter/input/meta/cookiecutter.json \
  14. /cookiecutter/templates/nginx-https/cookiecutter.json && \
  15. \
  16. cd /cookiecutter/output && \
  17. cookiecutter --no-input /cookiecutter/templates/nginx-http directory_name=nginx-http && \
  18. \
  19. cd /cookiecutter/output && \
  20. cookiecutter --no-input /cookiecutter/templates/nginx-https directory_name=nginx-https