Skip to content

Commit

Permalink
Make basic auth as default authentication option
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaranvpl committed Nov 13, 2024
1 parent 86da4bc commit 38d0902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}

0 comments on commit 38d0902

Please sign in to comment.