├── .gitignore ├── .jshintrc ├── .vscode ├── .launch.json ├── cSpell.json ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SonarQube.Analysis.xml ├── generators ├── app │ ├── args.js │ ├── compose.js │ ├── index.js │ ├── prompt.js │ └── utility.js ├── asp │ ├── index.js │ └── templates │ │ ├── README.md │ │ ├── app.sln │ │ ├── gitignore │ │ ├── src │ │ ├── app.tests │ │ │ ├── HomeControllerTest.cs │ │ │ └── app.Tests.csproj │ │ └── app │ │ │ ├── .bowerrc │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Dockerfile │ │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── app.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── bower.json │ │ │ ├── bundleconfig.json │ │ │ ├── web.config │ │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ ├── banner3.svg │ │ │ └── banner4.svg │ │ │ └── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ └── templates │ │ ├── acilinux_arm.json │ │ ├── acilinux_arm.parameters.json │ │ ├── arm.parameters.json │ │ ├── asp_arm.json │ │ ├── docker_arm.json │ │ ├── docker_arm.parameters.json │ │ └── parameters.xml ├── aspFull │ ├── index.js │ └── templates │ │ ├── README.md │ │ ├── gitattributes │ │ ├── gitignore │ │ ├── webapp.IaC │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ ├── Deployment.targets │ │ ├── WebSite.json │ │ ├── WebSite.parameters.json │ │ └── webapp.IaC.deployproj │ │ ├── webapp.Tests │ │ ├── App.config │ │ ├── Controllers │ │ │ └── HomeControllerTest.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── packages.config │ │ └── webapp.Tests.csproj │ │ ├── webapp.sln │ │ └── webapp │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ │ ├── ApplicationInsights.config │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── packages.config │ │ └── webapp.csproj ├── azure │ ├── app.js │ └── index.js ├── build │ ├── app.js │ ├── index.js │ └── templates │ │ ├── tfs_aspFull_build.json │ │ ├── tfs_asp_build.json │ │ ├── tfs_asp_docker_build.json │ │ ├── tfs_java_build.json │ │ ├── tfs_java_docker_build.json │ │ ├── tfs_node_build.json │ │ ├── tfs_node_docker_build.json │ │ ├── vsts_aspFull_build.json │ │ ├── vsts_asp_build.json │ │ ├── vsts_asp_docker_build.json │ │ ├── vsts_java_build.json │ │ ├── vsts_java_docker_build.json │ │ ├── vsts_node_build.json │ │ ├── vsts_node_docker_build.json │ │ └── vsts_powershell_build.json ├── docker │ ├── app.js │ └── index.js ├── feed │ ├── app.js │ └── index.js ├── git │ └── index.js ├── java │ ├── index.js │ └── templates │ │ ├── .bowerrc │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── bower.json │ │ ├── gitignore │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── mycompany │ │ │ │ │ └── controllers │ │ │ │ │ └── HomeController.java │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── spring-servlet.xml │ │ │ │ ├── tiles.xml │ │ │ │ ├── views │ │ │ │ │ ├── home │ │ │ │ │ │ ├── about.jsp │ │ │ │ │ │ ├── contact.jsp │ │ │ │ │ │ └── index.jsp │ │ │ │ │ └── shared │ │ │ │ │ │ └── layout.jsp │ │ │ │ └── web.xml │ │ │ │ └── resources │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ │ └── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── mycompany │ │ │ └── controllers │ │ │ └── HomeControllerTest.java │ │ └── templates │ │ ├── acilinux_arm.json │ │ ├── acilinux_arm.parameters.json │ │ ├── docker_arm.json │ │ ├── docker_arm.parameters.json │ │ ├── java_arm.json │ │ ├── java_arm.parameters.json │ │ └── parameters.xml ├── k8s │ ├── README.md │ ├── index.js │ └── templates │ │ └── chart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ │ └── values.yaml ├── node │ ├── index.js │ └── templates │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── parameters.xml │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ ├── javascripts │ │ │ │ └── site.js │ │ │ └── stylesheets │ │ │ │ └── style.css │ │ ├── routes │ │ │ └── homeController.js │ │ ├── server.js │ │ ├── utility.js │ │ ├── views │ │ │ ├── about.pug │ │ │ ├── contact.pug │ │ │ ├── error.pug │ │ │ ├── index.pug │ │ │ └── layout.pug │ │ └── web.config │ │ ├── templates │ │ ├── acilinux_arm.json │ │ ├── acilinux_arm.parameters.json │ │ ├── arm.parameters.json │ │ ├── docker_arm.json │ │ ├── docker_arm.parameters.json │ │ └── node_arm.json │ │ └── test │ │ └── unitTest.js ├── nuget │ ├── app.js │ └── index.js ├── pipeline │ └── index.js ├── powershell │ ├── index.js │ └── templates │ │ ├── .docs │ │ ├── Index.md │ │ ├── about.md │ │ ├── common │ │ │ ├── description.md │ │ │ └── header.md │ │ ├── function.md │ │ ├── gen-help.ps1 │ │ ├── readme.md │ │ └── synopsis │ │ │ └── function.md │ │ ├── Classes │ │ └── Classes.ps1 │ │ ├── Internal │ │ └── Internal.ps1 │ │ ├── Public │ │ └── function.ps1 │ │ ├── Tests │ │ └── function.tests.ps1 │ │ ├── gitignore │ │ ├── module.psd1 │ │ ├── module.psm1 │ │ └── readme.md ├── profile │ └── index.js ├── project │ ├── app.js │ └── index.js ├── registry │ ├── app.js │ └── index.js └── release │ ├── app.js │ ├── index.js │ └── templates │ ├── tfs_2018_release.json │ ├── tfs_2018_release_dockerpaas.json │ ├── tfs_release.json │ ├── tfs_release_acilinux.json │ ├── tfs_release_docker.json │ ├── tfs_release_dockerpaas.json │ ├── vsts_release.json │ ├── vsts_release_acilinux.json │ ├── vsts_release_docker.json │ ├── vsts_release_dockerpaas.json │ ├── vsts_release_dockerpaas_noloadtest.json │ ├── vsts_release_k8s.json │ ├── vsts_release_noloadtest.json │ ├── vsts_release_powershell.json │ └── vsts_release_slots.json ├── integration └── test │ ├── _appService.js │ ├── _azure.js │ ├── _docker.js │ ├── _index.js │ ├── _powershell.js │ ├── _util.js │ ├── appServiceLinuxAspTests.js │ ├── appServiceLinuxJavaTests.js │ ├── appServiceLinuxNodeTests.js │ ├── appServiceSlotsWindowsAspFullTests.js │ ├── appServiceSlotsWindowsAspTests.js │ ├── appServiceSlotsWindowsJavaTests.js │ ├── appServiceSlotsWindowsNodeTests.js │ ├── appServiceWindowsAspFullTests.js │ ├── appServiceWindowsAspTests.js │ ├── appServiceWindowsJavaTests.js │ ├── appServiceWindowsNodeTests.js │ ├── buildTests.js │ ├── custom │ ├── vsts_custom_build.json │ ├── vsts_custom_docker_build.json │ ├── vsts_release.json │ └── vsts_release_docker.json │ ├── deleteSPN.ps1 │ ├── dockerACIDefaultAgentAspTests.js │ ├── dockerACIDefaultAgentJavaTests.js │ ├── dockerACIDefaultAgentNodeTests.js │ ├── dockerACILinuxAgentAspTests.js │ ├── dockerACILinuxAgentJavaTests.js │ ├── dockerACILinuxAgentNodeTests.js │ ├── dockerAspTests.js │ ├── dockerJavaTests.js │ ├── dockerK8sLinuxAgentAspTests.js │ ├── dockerK8sLinuxAgentJavaTests.js │ ├── dockerK8sLinuxAgentNodeTests.js │ ├── dockerNodeTests.js │ ├── mocha.opts │ ├── powershellTests.js │ ├── projectTests.js │ └── readme.md ├── package.json ├── unit └── test │ ├── appTests.js │ ├── aspFullTests.js │ ├── aspTests.js │ ├── azureTests.js │ ├── buildTests.js │ ├── ca.pem │ ├── cert.pem │ ├── composeTests.js │ ├── dockerTests.js │ ├── gitTests.js │ ├── javaTests.js │ ├── k8s.Tests.js │ ├── key.pem │ ├── node.Tests.ps1 │ ├── nodeTests.js │ ├── pipelineTests.js │ ├── powershellTests.js │ ├── profileTests.js │ ├── project.Tests.ps1 │ ├── projectTests.js │ ├── promptTests.js │ ├── registryTests.js │ ├── releaseTests.js │ ├── stubs.js │ └── utilityTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } -------------------------------------------------------------------------------- /.vscode/.launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/.vscode/.launch.json -------------------------------------------------------------------------------- /.vscode/cSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/.vscode/cSpell.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/README.md -------------------------------------------------------------------------------- /SonarQube.Analysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/SonarQube.Analysis.xml -------------------------------------------------------------------------------- /generators/app/args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/app/args.js -------------------------------------------------------------------------------- /generators/app/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/app/compose.js -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/app/prompt.js -------------------------------------------------------------------------------- /generators/app/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/app/utility.js -------------------------------------------------------------------------------- /generators/asp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/index.js -------------------------------------------------------------------------------- /generators/asp/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/README.md -------------------------------------------------------------------------------- /generators/asp/templates/app.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/app.sln -------------------------------------------------------------------------------- /generators/asp/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/gitignore -------------------------------------------------------------------------------- /generators/asp/templates/src/app.tests/HomeControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app.tests/HomeControllerTest.cs -------------------------------------------------------------------------------- /generators/asp/templates/src/app.tests/app.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app.tests/app.Tests.csproj -------------------------------------------------------------------------------- /generators/asp/templates/src/app/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/<%= name %>/wwwroot/lib" 3 | } -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Controllers/HomeController.cs -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Dockerfile -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Program.cs -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Startup.cs -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/Home/About.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /generators/asp/templates/src/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/app.csproj -------------------------------------------------------------------------------- /generators/asp/templates/src/app/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/appsettings.Development.json -------------------------------------------------------------------------------- /generators/asp/templates/src/app/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/appsettings.json -------------------------------------------------------------------------------- /generators/asp/templates/src/app/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/bower.json -------------------------------------------------------------------------------- /generators/asp/templates/src/app/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/bundleconfig.json -------------------------------------------------------------------------------- /generators/asp/templates/src/app/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/web.config -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/css/site.css -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/favicon.ico -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/src/app/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /generators/asp/templates/src/app/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/asp/templates/templates/acilinux_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/acilinux_arm.json -------------------------------------------------------------------------------- /generators/asp/templates/templates/acilinux_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/acilinux_arm.parameters.json -------------------------------------------------------------------------------- /generators/asp/templates/templates/arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/arm.parameters.json -------------------------------------------------------------------------------- /generators/asp/templates/templates/asp_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/asp_arm.json -------------------------------------------------------------------------------- /generators/asp/templates/templates/docker_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/docker_arm.json -------------------------------------------------------------------------------- /generators/asp/templates/templates/docker_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/docker_arm.parameters.json -------------------------------------------------------------------------------- /generators/asp/templates/templates/parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/asp/templates/templates/parameters.xml -------------------------------------------------------------------------------- /generators/aspFull/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/index.js -------------------------------------------------------------------------------- /generators/aspFull/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/README.md -------------------------------------------------------------------------------- /generators/aspFull/templates/gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/gitattributes -------------------------------------------------------------------------------- /generators/aspFull/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/gitignore -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.IaC/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.IaC/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.IaC/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.IaC/Deployment.targets -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.IaC/WebSite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.IaC/WebSite.json -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.IaC/WebSite.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.IaC/WebSite.parameters.json -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.IaC/webapp.IaC.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.IaC/webapp.IaC.deployproj -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.Tests/App.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.Tests/Controllers/HomeControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.Tests/Controllers/HomeControllerTest.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.Tests/packages.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.Tests/webapp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.Tests/webapp.Tests.csproj -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp.sln -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/ApplicationInsights.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Content/Site.css -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Content/bootstrap.css -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Global.asax -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Global.asax.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/respond.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Scripts/respond.min.js -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/Web.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Web.Debug.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Web.Release.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/Web.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/favicon.ico -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/packages.config -------------------------------------------------------------------------------- /generators/aspFull/templates/webapp/webapp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/aspFull/templates/webapp/webapp.csproj -------------------------------------------------------------------------------- /generators/azure/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/azure/app.js -------------------------------------------------------------------------------- /generators/azure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/azure/index.js -------------------------------------------------------------------------------- /generators/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/app.js -------------------------------------------------------------------------------- /generators/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/index.js -------------------------------------------------------------------------------- /generators/build/templates/tfs_aspFull_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_aspFull_build.json -------------------------------------------------------------------------------- /generators/build/templates/tfs_asp_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_asp_build.json -------------------------------------------------------------------------------- /generators/build/templates/tfs_asp_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_asp_docker_build.json -------------------------------------------------------------------------------- /generators/build/templates/tfs_java_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_java_build.json -------------------------------------------------------------------------------- /generators/build/templates/tfs_java_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_java_docker_build.json -------------------------------------------------------------------------------- /generators/build/templates/tfs_node_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_node_build.json -------------------------------------------------------------------------------- /generators/build/templates/tfs_node_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/tfs_node_docker_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_aspFull_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_aspFull_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_asp_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_asp_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_asp_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_asp_docker_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_java_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_java_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_java_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_java_docker_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_node_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_node_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_node_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_node_docker_build.json -------------------------------------------------------------------------------- /generators/build/templates/vsts_powershell_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/build/templates/vsts_powershell_build.json -------------------------------------------------------------------------------- /generators/docker/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/docker/app.js -------------------------------------------------------------------------------- /generators/docker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/docker/index.js -------------------------------------------------------------------------------- /generators/feed/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/feed/app.js -------------------------------------------------------------------------------- /generators/feed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/feed/index.js -------------------------------------------------------------------------------- /generators/git/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/git/index.js -------------------------------------------------------------------------------- /generators/java/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/index.js -------------------------------------------------------------------------------- /generators/java/templates/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/main/webapp/resources/lib" 3 | } -------------------------------------------------------------------------------- /generators/java/templates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/Dockerfile -------------------------------------------------------------------------------- /generators/java/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/README.md -------------------------------------------------------------------------------- /generators/java/templates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/bower.json -------------------------------------------------------------------------------- /generators/java/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/gitignore -------------------------------------------------------------------------------- /generators/java/templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/pom.xml -------------------------------------------------------------------------------- /generators/java/templates/src/main/java/com/mycompany/controllers/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/java/com/mycompany/controllers/HomeController.java -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/spring-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/spring-servlet.xml -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/views/home/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/views/home/about.jsp -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/views/home/contact.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/views/home/contact.jsp -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/views/home/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/views/home/index.jsp -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/views/shared/layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/views/shared/layout.jsp -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/css/site.css -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/css/site.min.css -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/favicon.ico -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/images/banner1.svg -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/images/banner2.svg -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/images/banner3.svg -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/main/webapp/resources/images/banner4.svg -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /generators/java/templates/src/main/webapp/resources/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/java/templates/src/test/java/com/mycompany/controllers/HomeControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/src/test/java/com/mycompany/controllers/HomeControllerTest.java -------------------------------------------------------------------------------- /generators/java/templates/templates/acilinux_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/acilinux_arm.json -------------------------------------------------------------------------------- /generators/java/templates/templates/acilinux_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/acilinux_arm.parameters.json -------------------------------------------------------------------------------- /generators/java/templates/templates/docker_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/docker_arm.json -------------------------------------------------------------------------------- /generators/java/templates/templates/docker_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/docker_arm.parameters.json -------------------------------------------------------------------------------- /generators/java/templates/templates/java_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/java_arm.json -------------------------------------------------------------------------------- /generators/java/templates/templates/java_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/java_arm.parameters.json -------------------------------------------------------------------------------- /generators/java/templates/templates/parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/java/templates/templates/parameters.xml -------------------------------------------------------------------------------- /generators/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/README.md -------------------------------------------------------------------------------- /generators/k8s/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/index.js -------------------------------------------------------------------------------- /generators/k8s/templates/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/.helmignore -------------------------------------------------------------------------------- /generators/k8s/templates/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/Chart.yaml -------------------------------------------------------------------------------- /generators/k8s/templates/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /generators/k8s/templates/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /generators/k8s/templates/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /generators/k8s/templates/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /generators/k8s/templates/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/templates/service.yaml -------------------------------------------------------------------------------- /generators/k8s/templates/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/k8s/templates/chart/values.yaml -------------------------------------------------------------------------------- /generators/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/index.js -------------------------------------------------------------------------------- /generators/node/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/Gruntfile.js -------------------------------------------------------------------------------- /generators/node/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/README.md -------------------------------------------------------------------------------- /generators/node/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/gitignore -------------------------------------------------------------------------------- /generators/node/templates/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/package-lock.json -------------------------------------------------------------------------------- /generators/node/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/package.json -------------------------------------------------------------------------------- /generators/node/templates/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/Dockerfile -------------------------------------------------------------------------------- /generators/node/templates/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/app.js -------------------------------------------------------------------------------- /generators/node/templates/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/package-lock.json -------------------------------------------------------------------------------- /generators/node/templates/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/package.json -------------------------------------------------------------------------------- /generators/node/templates/src/parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/parameters.xml -------------------------------------------------------------------------------- /generators/node/templates/src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/public/favicon.ico -------------------------------------------------------------------------------- /generators/node/templates/src/public/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/public/images/banner1.svg -------------------------------------------------------------------------------- /generators/node/templates/src/public/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/public/images/banner2.svg -------------------------------------------------------------------------------- /generators/node/templates/src/public/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/public/images/banner3.svg -------------------------------------------------------------------------------- /generators/node/templates/src/public/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/public/images/banner4.svg -------------------------------------------------------------------------------- /generators/node/templates/src/public/javascripts/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /generators/node/templates/src/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/public/stylesheets/style.css -------------------------------------------------------------------------------- /generators/node/templates/src/routes/homeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/routes/homeController.js -------------------------------------------------------------------------------- /generators/node/templates/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/server.js -------------------------------------------------------------------------------- /generators/node/templates/src/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/utility.js -------------------------------------------------------------------------------- /generators/node/templates/src/views/about.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/views/about.pug -------------------------------------------------------------------------------- /generators/node/templates/src/views/contact.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/views/contact.pug -------------------------------------------------------------------------------- /generators/node/templates/src/views/error.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/views/error.pug -------------------------------------------------------------------------------- /generators/node/templates/src/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/views/index.pug -------------------------------------------------------------------------------- /generators/node/templates/src/views/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/views/layout.pug -------------------------------------------------------------------------------- /generators/node/templates/src/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/src/web.config -------------------------------------------------------------------------------- /generators/node/templates/templates/acilinux_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/templates/acilinux_arm.json -------------------------------------------------------------------------------- /generators/node/templates/templates/acilinux_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/templates/acilinux_arm.parameters.json -------------------------------------------------------------------------------- /generators/node/templates/templates/arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/templates/arm.parameters.json -------------------------------------------------------------------------------- /generators/node/templates/templates/docker_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/templates/docker_arm.json -------------------------------------------------------------------------------- /generators/node/templates/templates/docker_arm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/templates/docker_arm.parameters.json -------------------------------------------------------------------------------- /generators/node/templates/templates/node_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/templates/node_arm.json -------------------------------------------------------------------------------- /generators/node/templates/test/unitTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/node/templates/test/unitTest.js -------------------------------------------------------------------------------- /generators/nuget/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/nuget/app.js -------------------------------------------------------------------------------- /generators/nuget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/nuget/index.js -------------------------------------------------------------------------------- /generators/pipeline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/pipeline/index.js -------------------------------------------------------------------------------- /generators/powershell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/index.js -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/Index.md: -------------------------------------------------------------------------------- 1 | ## <%= name %> Functions 2 | 3 | -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/.docs/about.md -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/common/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/.docs/common/description.md -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/common/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/.docs/common/header.md -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/.docs/function.md -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/gen-help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/.docs/gen-help.ps1 -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/.docs/readme.md -------------------------------------------------------------------------------- /generators/powershell/templates/.docs/synopsis/function.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/powershell/templates/Classes/Classes.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Place all your classes here 3 | #> -------------------------------------------------------------------------------- /generators/powershell/templates/Internal/Internal.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Place all your private code here. These will not be exported. 3 | #> -------------------------------------------------------------------------------- /generators/powershell/templates/Public/function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/Public/function.ps1 -------------------------------------------------------------------------------- /generators/powershell/templates/Tests/function.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/Tests/function.tests.ps1 -------------------------------------------------------------------------------- /generators/powershell/templates/gitignore: -------------------------------------------------------------------------------- 1 | .docs/files.md -------------------------------------------------------------------------------- /generators/powershell/templates/module.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/module.psd1 -------------------------------------------------------------------------------- /generators/powershell/templates/module.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/module.psm1 -------------------------------------------------------------------------------- /generators/powershell/templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/powershell/templates/readme.md -------------------------------------------------------------------------------- /generators/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/profile/index.js -------------------------------------------------------------------------------- /generators/project/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/project/app.js -------------------------------------------------------------------------------- /generators/project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/project/index.js -------------------------------------------------------------------------------- /generators/registry/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/registry/app.js -------------------------------------------------------------------------------- /generators/registry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/registry/index.js -------------------------------------------------------------------------------- /generators/release/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/app.js -------------------------------------------------------------------------------- /generators/release/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/index.js -------------------------------------------------------------------------------- /generators/release/templates/tfs_2018_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/tfs_2018_release.json -------------------------------------------------------------------------------- /generators/release/templates/tfs_2018_release_dockerpaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/tfs_2018_release_dockerpaas.json -------------------------------------------------------------------------------- /generators/release/templates/tfs_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/tfs_release.json -------------------------------------------------------------------------------- /generators/release/templates/tfs_release_acilinux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/tfs_release_acilinux.json -------------------------------------------------------------------------------- /generators/release/templates/tfs_release_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/tfs_release_docker.json -------------------------------------------------------------------------------- /generators/release/templates/tfs_release_dockerpaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/tfs_release_dockerpaas.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_acilinux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_acilinux.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_docker.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_dockerpaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_dockerpaas.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_dockerpaas_noloadtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_dockerpaas_noloadtest.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_k8s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_k8s.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_noloadtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_noloadtest.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_powershell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_powershell.json -------------------------------------------------------------------------------- /generators/release/templates/vsts_release_slots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/generators/release/templates/vsts_release_slots.json -------------------------------------------------------------------------------- /integration/test/_appService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/_appService.js -------------------------------------------------------------------------------- /integration/test/_azure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/_azure.js -------------------------------------------------------------------------------- /integration/test/_docker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/_docker.js -------------------------------------------------------------------------------- /integration/test/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/_index.js -------------------------------------------------------------------------------- /integration/test/_powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/_powershell.js -------------------------------------------------------------------------------- /integration/test/_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/_util.js -------------------------------------------------------------------------------- /integration/test/appServiceLinuxAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceLinuxAspTests.js -------------------------------------------------------------------------------- /integration/test/appServiceLinuxJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceLinuxJavaTests.js -------------------------------------------------------------------------------- /integration/test/appServiceLinuxNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceLinuxNodeTests.js -------------------------------------------------------------------------------- /integration/test/appServiceSlotsWindowsAspFullTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceSlotsWindowsAspFullTests.js -------------------------------------------------------------------------------- /integration/test/appServiceSlotsWindowsAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceSlotsWindowsAspTests.js -------------------------------------------------------------------------------- /integration/test/appServiceSlotsWindowsJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceSlotsWindowsJavaTests.js -------------------------------------------------------------------------------- /integration/test/appServiceSlotsWindowsNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceSlotsWindowsNodeTests.js -------------------------------------------------------------------------------- /integration/test/appServiceWindowsAspFullTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceWindowsAspFullTests.js -------------------------------------------------------------------------------- /integration/test/appServiceWindowsAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceWindowsAspTests.js -------------------------------------------------------------------------------- /integration/test/appServiceWindowsJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceWindowsJavaTests.js -------------------------------------------------------------------------------- /integration/test/appServiceWindowsNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/appServiceWindowsNodeTests.js -------------------------------------------------------------------------------- /integration/test/buildTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/buildTests.js -------------------------------------------------------------------------------- /integration/test/custom/vsts_custom_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/custom/vsts_custom_build.json -------------------------------------------------------------------------------- /integration/test/custom/vsts_custom_docker_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/custom/vsts_custom_docker_build.json -------------------------------------------------------------------------------- /integration/test/custom/vsts_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/custom/vsts_release.json -------------------------------------------------------------------------------- /integration/test/custom/vsts_release_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/custom/vsts_release_docker.json -------------------------------------------------------------------------------- /integration/test/deleteSPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/deleteSPN.ps1 -------------------------------------------------------------------------------- /integration/test/dockerACIDefaultAgentAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerACIDefaultAgentAspTests.js -------------------------------------------------------------------------------- /integration/test/dockerACIDefaultAgentJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerACIDefaultAgentJavaTests.js -------------------------------------------------------------------------------- /integration/test/dockerACIDefaultAgentNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerACIDefaultAgentNodeTests.js -------------------------------------------------------------------------------- /integration/test/dockerACILinuxAgentAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerACILinuxAgentAspTests.js -------------------------------------------------------------------------------- /integration/test/dockerACILinuxAgentJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerACILinuxAgentJavaTests.js -------------------------------------------------------------------------------- /integration/test/dockerACILinuxAgentNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerACILinuxAgentNodeTests.js -------------------------------------------------------------------------------- /integration/test/dockerAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerAspTests.js -------------------------------------------------------------------------------- /integration/test/dockerJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerJavaTests.js -------------------------------------------------------------------------------- /integration/test/dockerK8sLinuxAgentAspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerK8sLinuxAgentAspTests.js -------------------------------------------------------------------------------- /integration/test/dockerK8sLinuxAgentJavaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerK8sLinuxAgentJavaTests.js -------------------------------------------------------------------------------- /integration/test/dockerK8sLinuxAgentNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerK8sLinuxAgentNodeTests.js -------------------------------------------------------------------------------- /integration/test/dockerNodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/dockerNodeTests.js -------------------------------------------------------------------------------- /integration/test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/mocha.opts -------------------------------------------------------------------------------- /integration/test/powershellTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/powershellTests.js -------------------------------------------------------------------------------- /integration/test/projectTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/projectTests.js -------------------------------------------------------------------------------- /integration/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/integration/test/readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/package.json -------------------------------------------------------------------------------- /unit/test/appTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/appTests.js -------------------------------------------------------------------------------- /unit/test/aspFullTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/aspFullTests.js -------------------------------------------------------------------------------- /unit/test/aspTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/aspTests.js -------------------------------------------------------------------------------- /unit/test/azureTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/azureTests.js -------------------------------------------------------------------------------- /unit/test/buildTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/buildTests.js -------------------------------------------------------------------------------- /unit/test/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/ca.pem -------------------------------------------------------------------------------- /unit/test/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/cert.pem -------------------------------------------------------------------------------- /unit/test/composeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/composeTests.js -------------------------------------------------------------------------------- /unit/test/dockerTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/dockerTests.js -------------------------------------------------------------------------------- /unit/test/gitTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/gitTests.js -------------------------------------------------------------------------------- /unit/test/javaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/javaTests.js -------------------------------------------------------------------------------- /unit/test/k8s.Tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/k8s.Tests.js -------------------------------------------------------------------------------- /unit/test/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/key.pem -------------------------------------------------------------------------------- /unit/test/node.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/node.Tests.ps1 -------------------------------------------------------------------------------- /unit/test/nodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/nodeTests.js -------------------------------------------------------------------------------- /unit/test/pipelineTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/pipelineTests.js -------------------------------------------------------------------------------- /unit/test/powershellTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/powershellTests.js -------------------------------------------------------------------------------- /unit/test/profileTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/profileTests.js -------------------------------------------------------------------------------- /unit/test/project.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/project.Tests.ps1 -------------------------------------------------------------------------------- /unit/test/projectTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/projectTests.js -------------------------------------------------------------------------------- /unit/test/promptTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/promptTests.js -------------------------------------------------------------------------------- /unit/test/registryTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/registryTests.js -------------------------------------------------------------------------------- /unit/test/releaseTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/releaseTests.js -------------------------------------------------------------------------------- /unit/test/stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/stubs.js -------------------------------------------------------------------------------- /unit/test/utilityTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/unit/test/utilityTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarqueWarrior/generator-team/HEAD/yarn.lock --------------------------------------------------------------------------------