├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md └── npm-api.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-Bash-API/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-Bash-API/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE specific files 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-Bash-API/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-Bash-API/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-Bash-API/HEAD/README.md -------------------------------------------------------------------------------- /npm-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erreur32/nginx-proxy-manager-Bash-API/HEAD/npm-api.sh --------------------------------------------------------------------------------