From 38d090297a21d67317afdc6dbceacc1f7b941b91 Mon Sep 17 00:00:00 2001 From: Kumaran Rajendhiran Date: Wed, 13 Nov 2024 13:04:33 +0530 Subject: [PATCH] Make basic auth as default authentication option --- .github/workflows/test.yml | 2 +- cookiecutter.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d9d8aa8..0d657b0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: matrix: python-version: ["3.12", "3.11", "3.10"] app-type: ["fastapi+mesop", "mesop", "nats+fastapi+mesop"] - authentication: ["none", "google", "basic"] + authentication: ["basic", "google", "none"] fail-fast: false runs-on: ubuntu-latest timeout-minutes: 15 diff --git a/cookiecutter.json b/cookiecutter.json index de846c7..1b82f41 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -3,5 +3,5 @@ "project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}", "app_type": ["fastapi+mesop", "mesop", "nats+fastapi+mesop"], "python_version": ["3.12", "3.11", "3.10"], - "authentication": ["none", "google", "basic"] + "authentication": ["basic", "google", "none"] }