├── .dockerignore ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── copy-pr-template-to-dependabot-prs.yml │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE ├── README.md ├── config └── cucumber.yml ├── deploy.sh ├── docs ├── deployment.md ├── tagging.md └── writing-tests.md ├── features ├── apps │ ├── bouncer.feature │ ├── collections.feature │ ├── collections_publisher.feature │ ├── contacts_admin.feature │ ├── content_data_admin.feature │ ├── content_publisher.feature │ ├── content_store.feature │ ├── content_tagger.feature │ ├── feedback.feature │ ├── finder_frontend.feature │ ├── frontend.feature │ ├── government_frontend.feature │ ├── govuk_chat.feature │ ├── local_links_manager.feature │ ├── manuals_publisher.feature │ ├── maslow.feature │ ├── places_manager.feature │ ├── publisher.feature │ ├── search_api.feature │ ├── service_manual_publisher.feature │ ├── short_url_manager.feature │ ├── signon.feature │ ├── smartanswers.feature │ ├── smokey.feature │ ├── specialist_publisher.feature │ ├── static.feature │ ├── transition.feature │ ├── travel_advice_publisher.feature │ └── whitehall.feature ├── assets.feature ├── cdn.feature ├── data_gov_uk.feature ├── licensing.feature ├── origin.feature ├── step_definitions │ ├── ab_testing_steps.rb │ ├── click_button_steps.rb │ ├── csv_steps.rb │ ├── datagovuk_steps.rb │ ├── draft_environment_steps.rb │ ├── feedback_steps.rb │ ├── finder_frontend_steps.rb │ ├── frontend_steps.rb │ ├── government_frontend_steps.rb │ ├── govuk_chat_steps.rb │ ├── licensing.rb │ ├── publisher_steps.rb │ ├── search_api_steps.rb │ ├── sidekiq_monitoring_steps.rb │ ├── signon_steps.rb │ ├── smartanswers_steps.rb │ ├── smokey_steps.rb │ ├── waf_steps.rb │ └── whitehall_steps.rb └── support │ ├── assertions.rb │ ├── base_urls.rb │ ├── browser.rb │ ├── env.rb │ ├── govuk_proxy.rb │ ├── govuk_proxy_profiles.rb │ ├── hooks.rb │ ├── http_requests.rb │ └── visiting_pages.rb ├── govuk_proxy_runner.rb ├── log └── .gitkeep └── scripts ├── chromium.pref └── debian-keys.asc /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/copy-pr-template-to-dependabot-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.github/workflows/copy-pr-template-to-dependabot-prs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.3 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/README.md -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/deploy.sh -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/docs/tagging.md -------------------------------------------------------------------------------- /docs/writing-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/docs/writing-tests.md -------------------------------------------------------------------------------- /features/apps/bouncer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/bouncer.feature -------------------------------------------------------------------------------- /features/apps/collections.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/collections.feature -------------------------------------------------------------------------------- /features/apps/collections_publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/collections_publisher.feature -------------------------------------------------------------------------------- /features/apps/contacts_admin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/contacts_admin.feature -------------------------------------------------------------------------------- /features/apps/content_data_admin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/content_data_admin.feature -------------------------------------------------------------------------------- /features/apps/content_publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/content_publisher.feature -------------------------------------------------------------------------------- /features/apps/content_store.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/content_store.feature -------------------------------------------------------------------------------- /features/apps/content_tagger.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/content_tagger.feature -------------------------------------------------------------------------------- /features/apps/feedback.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/feedback.feature -------------------------------------------------------------------------------- /features/apps/finder_frontend.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/finder_frontend.feature -------------------------------------------------------------------------------- /features/apps/frontend.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/frontend.feature -------------------------------------------------------------------------------- /features/apps/government_frontend.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/government_frontend.feature -------------------------------------------------------------------------------- /features/apps/govuk_chat.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/govuk_chat.feature -------------------------------------------------------------------------------- /features/apps/local_links_manager.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/local_links_manager.feature -------------------------------------------------------------------------------- /features/apps/manuals_publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/manuals_publisher.feature -------------------------------------------------------------------------------- /features/apps/maslow.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/maslow.feature -------------------------------------------------------------------------------- /features/apps/places_manager.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/places_manager.feature -------------------------------------------------------------------------------- /features/apps/publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/publisher.feature -------------------------------------------------------------------------------- /features/apps/search_api.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/search_api.feature -------------------------------------------------------------------------------- /features/apps/service_manual_publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/service_manual_publisher.feature -------------------------------------------------------------------------------- /features/apps/short_url_manager.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/short_url_manager.feature -------------------------------------------------------------------------------- /features/apps/signon.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/signon.feature -------------------------------------------------------------------------------- /features/apps/smartanswers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/smartanswers.feature -------------------------------------------------------------------------------- /features/apps/smokey.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/smokey.feature -------------------------------------------------------------------------------- /features/apps/specialist_publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/specialist_publisher.feature -------------------------------------------------------------------------------- /features/apps/static.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/static.feature -------------------------------------------------------------------------------- /features/apps/transition.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/transition.feature -------------------------------------------------------------------------------- /features/apps/travel_advice_publisher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/travel_advice_publisher.feature -------------------------------------------------------------------------------- /features/apps/whitehall.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/apps/whitehall.feature -------------------------------------------------------------------------------- /features/assets.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/assets.feature -------------------------------------------------------------------------------- /features/cdn.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/cdn.feature -------------------------------------------------------------------------------- /features/data_gov_uk.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/data_gov_uk.feature -------------------------------------------------------------------------------- /features/licensing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/licensing.feature -------------------------------------------------------------------------------- /features/origin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/origin.feature -------------------------------------------------------------------------------- /features/step_definitions/ab_testing_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/ab_testing_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/click_button_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/click_button_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/csv_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/csv_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/datagovuk_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/datagovuk_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/draft_environment_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/draft_environment_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/feedback_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/feedback_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/finder_frontend_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/finder_frontend_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/frontend_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/frontend_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/government_frontend_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/government_frontend_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/govuk_chat_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/govuk_chat_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/licensing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/licensing.rb -------------------------------------------------------------------------------- /features/step_definitions/publisher_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/publisher_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/search_api_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/search_api_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/sidekiq_monitoring_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/sidekiq_monitoring_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/signon_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/signon_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/smartanswers_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/smartanswers_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/smokey_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/smokey_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/waf_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/waf_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/whitehall_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/step_definitions/whitehall_steps.rb -------------------------------------------------------------------------------- /features/support/assertions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/assertions.rb -------------------------------------------------------------------------------- /features/support/base_urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/base_urls.rb -------------------------------------------------------------------------------- /features/support/browser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/browser.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/govuk_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/govuk_proxy.rb -------------------------------------------------------------------------------- /features/support/govuk_proxy_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/govuk_proxy_profiles.rb -------------------------------------------------------------------------------- /features/support/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/hooks.rb -------------------------------------------------------------------------------- /features/support/http_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/http_requests.rb -------------------------------------------------------------------------------- /features/support/visiting_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/features/support/visiting_pages.rb -------------------------------------------------------------------------------- /govuk_proxy_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/govuk_proxy_runner.rb -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/chromium.pref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/scripts/chromium.pref -------------------------------------------------------------------------------- /scripts/debian-keys.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/smokey/HEAD/scripts/debian-keys.asc --------------------------------------------------------------------------------