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.

18 line
717B

  1. #!/bin/sh
  2. cp -v /cookiecutter/input/nginx-http/nginx.conf \
  3. /cookiecutter/templates/nginx-http/\{\{cookiecutter.directory_name\}\}/nginx.conf
  4. cp -v /cookiecutter/input/meta/cookiecutter.json \
  5. /cookiecutter/templates/nginx-http/cookiecutter.json
  6. cp -v /cookiecutter/input/nginx-https/nginx.conf \
  7. /cookiecutter/templates/nginx-https/\{\{cookiecutter.directory_name\}\}/nginx.conf
  8. cp -v /cookiecutter/input/meta/cookiecutter.json \
  9. /cookiecutter/templates/nginx-https/cookiecutter.json
  10. cd /cookiecutter/output
  11. cookiecutter --no-input /cookiecutter/templates/nginx-http directory_name=nginx-http
  12. cd /cookiecutter/output
  13. cookiecutter --no-input /cookiecutter/templates/nginx-https directory_name=nginx-https