gitextract__3jods0z/ ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── aws/ │ ├── aws-ecs/ │ │ ├── nodejs/ │ │ │ ├── .gitignore │ │ │ ├── Procfile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── main.tf │ │ │ ├── package.json │ │ │ ├── packer.json │ │ │ ├── public/ │ │ │ │ └── stylesheets/ │ │ │ │ └── main.css │ │ │ ├── views/ │ │ │ │ ├── pages/ │ │ │ │ │ └── index.ejs │ │ │ │ └── partials/ │ │ │ │ └── header.ejs │ │ │ └── waypoint.hcl │ │ ├── nodejs-terraform/ │ │ │ ├── .gitignore │ │ │ ├── Procfile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── packer.json │ │ │ ├── public/ │ │ │ │ └── stylesheets/ │ │ │ │ └── main.css │ │ │ ├── terraform/ │ │ │ │ ├── .terraform.lock.hcl │ │ │ │ ├── backend.tf │ │ │ │ ├── ecs.tf │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── views/ │ │ │ │ ├── pages/ │ │ │ │ │ └── index.ejs │ │ │ │ └── partials/ │ │ │ │ └── header.ejs │ │ │ └── waypoint.hcl │ │ └── python/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app/ │ │ │ ├── app.py │ │ │ ├── static/ │ │ │ │ ├── images/ │ │ │ │ │ └── language.svg.old │ │ │ │ └── stylesheets/ │ │ │ │ └── main.css │ │ │ ├── templates/ │ │ │ │ └── index.html │ │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── waypoint.hcl │ ├── ec2/ │ │ ├── README.md │ │ └── waypoint.hcl │ └── lambda/ │ ├── nodejs/ │ │ └── waypoint.hcl │ ├── nodejs-graphql/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── waypoint.hcl │ └── ruby/ │ ├── Dockerfile │ ├── README.md │ ├── handler.rb │ └── waypoint.hcl ├── azure/ │ └── azure-container-instance/ │ └── nodejs/ │ ├── .gitignore │ ├── Procfile │ ├── README.md │ ├── index.js │ ├── package.json │ ├── public/ │ │ └── stylesheets/ │ │ └── main.css │ ├── views/ │ │ ├── pages/ │ │ │ └── index.ejs │ │ └── partials/ │ │ └── header.ejs │ └── waypoint.hcl ├── docker/ │ ├── angular/ │ │ ├── Procfile │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e/ │ │ │ ├── protractor.conf.js │ │ │ ├── src/ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── server.js │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.scss │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ ├── tslint.json │ │ └── waypoint.hcl │ ├── aspnetapp/ │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Pages/ │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared/ │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── aspnetapp.csproj │ │ ├── waypoint.hcl │ │ └── wwwroot/ │ │ └── static/ │ │ └── stylesheets/ │ │ └── main.css │ ├── go/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ ├── go-multiapp/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ ├── java/ │ │ ├── .gitignore │ │ ├── .mvn/ │ │ │ └── wrapper/ │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src/ │ │ │ ├── main/ │ │ │ │ ├── java/ │ │ │ │ │ └── com/ │ │ │ │ │ └── example/ │ │ │ │ │ └── waypoint/ │ │ │ │ │ └── WaypointApplication.java │ │ │ │ └── resources/ │ │ │ │ ├── application.properties │ │ │ │ ├── public/ │ │ │ │ │ └── stylesheets/ │ │ │ │ │ └── main.css │ │ │ │ └── templates/ │ │ │ │ ├── fragments/ │ │ │ │ │ └── layout.html │ │ │ │ └── index.html │ │ │ └── test/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── waypoint/ │ │ │ └── WaypointApplicationTests.java │ │ ├── system.properties │ │ ├── waypoint.hcl │ │ ├── waypoint.hcl.gcp │ │ ├── waypoint.hcl.heroku │ │ └── waypoint.hcl.paketo │ ├── next-js/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── pages/ │ │ │ ├── _app.js │ │ │ ├── api/ │ │ │ │ └── hello.js │ │ │ └── index.js │ │ ├── styles/ │ │ │ ├── Home.module.css │ │ │ └── globals.css │ │ └── waypoint.hcl │ ├── nodejs/ │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── php/ │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ ├── Procfile │ │ ├── README.md │ │ ├── app/ │ │ │ ├── Console/ │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions/ │ │ │ │ └── Handler.php │ │ │ ├── Http/ │ │ │ │ ├── Controllers/ │ │ │ │ │ └── Controller.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware/ │ │ │ │ ├── Authenticate.php │ │ │ │ ├── EncryptCookies.php │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ ├── TrimStrings.php │ │ │ │ ├── TrustHosts.php │ │ │ │ ├── TrustProxies.php │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Models/ │ │ │ │ └── User.php │ │ │ └── Providers/ │ │ │ ├── AppServiceProvider.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap/ │ │ │ ├── app.php │ │ │ └── cache/ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── config/ │ │ │ ├── app.php │ │ │ ├── auth.php │ │ │ ├── broadcasting.php │ │ │ ├── cache.php │ │ │ ├── cors.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── hashing.php │ │ │ ├── logging.php │ │ │ ├── mail.php │ │ │ ├── queue.php │ │ │ ├── services.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database/ │ │ │ ├── .gitignore │ │ │ ├── factories/ │ │ │ │ └── UserFactory.php │ │ │ ├── migrations/ │ │ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ │ │ └── 2019_08_19_000000_create_failed_jobs_table.php │ │ │ └── seeders/ │ │ │ └── DatabaseSeeder.php │ │ ├── package.json │ │ ├── phpunit.xml │ │ ├── public/ │ │ │ ├── .htaccess │ │ │ ├── css/ │ │ │ │ └── main.css │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── web.config │ │ ├── resources/ │ │ │ ├── css/ │ │ │ │ └── app.css │ │ │ ├── js/ │ │ │ │ ├── app.js │ │ │ │ └── bootstrap.js │ │ │ ├── lang/ │ │ │ │ └── en/ │ │ │ │ ├── auth.php │ │ │ │ ├── pagination.php │ │ │ │ ├── passwords.php │ │ │ │ └── validation.php │ │ │ └── views/ │ │ │ └── welcome.blade.php │ │ ├── routes/ │ │ │ ├── api.php │ │ │ ├── channels.php │ │ │ ├── console.php │ │ │ └── web.php │ │ ├── server.php │ │ ├── storage/ │ │ │ ├── app/ │ │ │ │ └── .gitignore │ │ │ ├── framework/ │ │ │ │ ├── .gitignore │ │ │ │ ├── cache/ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions/ │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing/ │ │ │ │ │ └── .gitignore │ │ │ │ └── views/ │ │ │ │ └── .gitignore │ │ │ └── logs/ │ │ │ └── .gitignore │ │ ├── tests/ │ │ │ ├── CreatesApplication.php │ │ │ ├── Feature/ │ │ │ │ └── ExampleTest.php │ │ │ ├── TestCase.php │ │ │ └── Unit/ │ │ │ └── ExampleTest.php │ │ ├── waypoint.hcl │ │ └── webpack.mix.js │ ├── python/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app/ │ │ │ ├── app.py │ │ │ ├── static/ │ │ │ │ └── stylesheets/ │ │ │ │ └── main.css │ │ │ ├── templates/ │ │ │ │ └── index.html │ │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── waypoint.hcl │ ├── reactjs/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── nginx/ │ │ │ └── default.conf │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── index.js │ │ │ ├── serviceWorker.js │ │ │ └── setupTests.js │ │ └── waypoint.hcl │ ├── reactjs-packer/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── nginx/ │ │ │ └── default.conf │ │ ├── nginx.pkr.hcl │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── index.js │ │ │ ├── serviceWorker.js │ │ │ └── setupTests.js │ │ └── waypoint.hcl │ ├── ruby/ │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── Procfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── assets/ │ │ │ │ ├── images/ │ │ │ │ │ └── .keep │ │ │ │ ├── javascripts/ │ │ │ │ │ ├── application.js │ │ │ │ │ ├── welcome.js.coffee │ │ │ │ │ └── widgets.js.coffee │ │ │ │ └── stylesheets/ │ │ │ │ ├── application.css │ │ │ │ ├── main.css.scss │ │ │ │ ├── scaffolds.css.scss │ │ │ │ ├── theme.css.scss │ │ │ │ ├── welcome.css.scss │ │ │ │ └── widgets.css.scss │ │ │ ├── controllers/ │ │ │ │ ├── application_controller.rb │ │ │ │ ├── concerns/ │ │ │ │ │ └── .keep │ │ │ │ ├── welcome_controller.rb │ │ │ │ └── widgets_controller.rb │ │ │ ├── helpers/ │ │ │ │ ├── application_helper.rb │ │ │ │ ├── welcome_helper.rb │ │ │ │ └── widgets_helper.rb │ │ │ ├── mailers/ │ │ │ │ └── .keep │ │ │ ├── models/ │ │ │ │ ├── .keep │ │ │ │ ├── concerns/ │ │ │ │ │ └── .keep │ │ │ │ └── widget.rb │ │ │ └── views/ │ │ │ ├── layouts/ │ │ │ │ └── application.html.erb │ │ │ ├── welcome/ │ │ │ │ └── index.erb │ │ │ └── widgets/ │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── index.json.jbuilder │ │ │ ├── new.html.erb │ │ │ ├── show.html.erb │ │ │ └── show.json.jbuilder │ │ ├── bin/ │ │ │ ├── bundle │ │ │ ├── rails │ │ │ ├── rake │ │ │ ├── setup │ │ │ ├── spring │ │ │ ├── update │ │ │ └── yarn │ │ ├── config/ │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── cable.yml │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments/ │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers/ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ ├── assets.rb │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── content_security_policy.rb │ │ │ │ ├── cookies_serializer.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── new_framework_defaults_5_2.rb │ │ │ │ ├── session_store.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales/ │ │ │ │ └── en.yml │ │ │ ├── puma.rb │ │ │ ├── routes.rb │ │ │ ├── secrets.yml │ │ │ ├── spring.rb │ │ │ └── storage.yml │ │ ├── config.ru │ │ ├── db/ │ │ │ ├── migrate/ │ │ │ │ └── 20140707111715_create_widgets.rb │ │ │ ├── schema.rb │ │ │ └── seeds.rb │ │ ├── lib/ │ │ │ ├── assets/ │ │ │ │ └── .keep │ │ │ └── tasks/ │ │ │ └── .keep │ │ ├── log/ │ │ │ └── .keep │ │ ├── public/ │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ └── robots.txt │ │ ├── test/ │ │ │ ├── controllers/ │ │ │ │ ├── .keep │ │ │ │ ├── welcome_controller_test.rb │ │ │ │ └── widgets_controller_test.rb │ │ │ ├── fixtures/ │ │ │ │ ├── .keep │ │ │ │ └── widgets.yml │ │ │ ├── helpers/ │ │ │ │ ├── .keep │ │ │ │ ├── welcome_helper_test.rb │ │ │ │ └── widgets_helper_test.rb │ │ │ ├── integration/ │ │ │ │ └── .keep │ │ │ ├── mailers/ │ │ │ │ └── .keep │ │ │ ├── models/ │ │ │ │ ├── .keep │ │ │ │ └── widget_test.rb │ │ │ └── test_helper.rb │ │ ├── vendor/ │ │ │ └── assets/ │ │ │ ├── javascripts/ │ │ │ │ └── .keep │ │ │ └── stylesheets/ │ │ │ └── .keep │ │ └── waypoint.hcl │ ├── static/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── nginx.conf │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ └── svelte/ │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── main.css │ ├── rollup.config.js │ ├── src/ │ │ ├── App.svelte │ │ ├── main.js │ │ └── views/ │ │ └── Index.svelte │ └── waypoint.hcl ├── gcp/ │ └── google-cloud-run/ │ └── nodejs/ │ ├── .gitignore │ ├── Procfile │ ├── README.md │ ├── index.js │ ├── package.json │ ├── public/ │ │ └── stylesheets/ │ │ └── main.css │ ├── views/ │ │ ├── pages/ │ │ │ └── index.ejs │ │ └── partials/ │ │ └── header.ejs │ └── waypoint.hcl ├── kubernetes/ │ ├── aws-eks/ │ │ └── nodejs/ │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── exec-kubectl-apply/ │ │ ├── README.md │ │ ├── example-nodejs-exec.yml │ │ ├── index.js │ │ ├── output.txt │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── go/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ ├── go-gitops/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ ├── go-multiapp-ingress/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app-one/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── app-two/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── go.mod │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ ├── go-multiworkspace/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── config.yml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── waypoint.hcl │ ├── go-workspace-pull/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ ├── java/ │ │ ├── .gitignore │ │ ├── .mvn/ │ │ │ └── wrapper/ │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src/ │ │ │ ├── main/ │ │ │ │ ├── java/ │ │ │ │ │ └── com/ │ │ │ │ │ └── example/ │ │ │ │ │ └── waypoint/ │ │ │ │ │ └── WaypointApplication.java │ │ │ │ └── resources/ │ │ │ │ ├── application.properties │ │ │ │ ├── public/ │ │ │ │ │ └── stylesheets/ │ │ │ │ │ └── main.css │ │ │ │ └── templates/ │ │ │ │ ├── fragments/ │ │ │ │ │ └── layout.html │ │ │ │ └── index.html │ │ │ └── test/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── waypoint/ │ │ │ └── WaypointApplicationTests.java │ │ ├── system.properties │ │ └── waypoint.hcl │ ├── nodejs/ │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── nodejs-apply/ │ │ ├── README.md │ │ ├── index.js │ │ ├── k8s/ │ │ │ └── deployment.yaml │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── nodejs-helm/ │ │ ├── README.md │ │ ├── helm/ │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates/ │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── values.yaml.tpl │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── nodejs-ingress/ │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── nodejs-ingress-sidecar/ │ │ ├── README.md │ │ ├── index.js │ │ ├── nginx.conf │ │ ├── package.json │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ ├── nodejs-local-registry/ │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ └── nodejs-metrics-sidecar/ │ ├── README.md │ ├── index.js │ ├── package.json │ ├── public/ │ │ └── stylesheets/ │ │ └── main.css │ ├── telegraf.conf │ ├── views/ │ │ ├── pages/ │ │ │ └── index.ejs │ │ └── partials/ │ │ └── header.ejs │ └── waypoint.hcl ├── learn/ │ ├── dynamic-application-configuration/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── postgres.nomad.hcl │ │ ├── readonly.sql │ │ ├── waypoint-policy.hcl │ │ └── waypoint.hcl │ ├── input-variables/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── static/ │ │ │ ├── index.html │ │ │ └── static/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ └── waypoint.hcl │ └── static-application-configuration/ │ ├── README.md │ ├── go.mod │ ├── main.go │ └── waypoint.hcl ├── nomad/ │ ├── nodejs/ │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── views/ │ │ │ ├── pages/ │ │ │ │ └── index.ejs │ │ │ └── partials/ │ │ │ └── header.ejs │ │ └── waypoint.hcl │ └── nodejs-jobspec/ │ ├── README.md │ ├── app.nomad.tpl │ ├── index.js │ ├── package.json │ ├── public/ │ │ └── stylesheets/ │ │ └── main.css │ ├── views/ │ │ ├── pages/ │ │ │ └── index.ejs │ │ └── partials/ │ │ └── header.ejs │ └── waypoint.hcl └── terraform/ └── variables/ ├── .gitignore ├── Dockerfile ├── README.md ├── terraform/ │ ├── main/ │ │ ├── main.tf │ │ └── outputs.tf │ └── tfc/ │ ├── .terraform.lock.hcl │ ├── main.tf │ └── variables.tf └── waypoint.hcl