Skip to content

Commit

Permalink
Regenerated examples for a0c6b5a
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed May 2, 2024
1 parent a0c6b5a commit 3bf1926
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/default/.copier/project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: e3cb115
_commit: 294cf1f
_src_path: .
admin_email: [email protected]
author_name: John Doe
Expand Down
4 changes: 3 additions & 1 deletion examples/default/default/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="375a5622b8c35879018395ed551920011161f556dd8ff36097fcf5c8a2880dd1",
default="01fd771c1b62da5f9a0103baf007a3c10f094efc7905a055fab8720de678a88e",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down Expand Up @@ -389,6 +389,8 @@

AWS_S3_ADDRESSING_STYLE = env.str("AWS_S3_ADDRESSING_STYLE", default="virtual")

AWS_S3_CUSTOM_DOMAIN = env("AWS_S3_CUSTOM_DOMAIN", default=None)

AWS_S3_REGION_NAME = env.str("AWS_S3_REGION_NAME", default=None)

AWS_S3_SIGNATURE_VERSION = env.str("AWS_S3_SIGNATURE_VERSION", default="s3v4")
Expand Down
2 changes: 1 addition & 1 deletion examples/postgis/.copier/project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: a170c10
_commit: e67523b
_src_path: .
admin_email: [email protected]
author_name: John Doe
Expand Down
4 changes: 3 additions & 1 deletion examples/postgis/default/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="b34357c7b19223248d98ecc2a343f9e34a4d8a29f87c526deaa0eb83ac9a2d17",
default="b1abbf6e91afd7cfbad19aa4eea663eff1f5bbd084a8b5ca547623a7f9959f95",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down Expand Up @@ -389,6 +389,8 @@

AWS_S3_ADDRESSING_STYLE = env.str("AWS_S3_ADDRESSING_STYLE", default="virtual")

AWS_S3_CUSTOM_DOMAIN = env("AWS_S3_CUSTOM_DOMAIN", default=None)

AWS_S3_REGION_NAME = env.str("AWS_S3_REGION_NAME", default=None)

AWS_S3_SIGNATURE_VERSION = env.str("AWS_S3_SIGNATURE_VERSION", default="s3v4")
Expand Down
2 changes: 1 addition & 1 deletion examples/with_vite/.copier/project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: c702dc8
_commit: 4dcd8f0
_src_path: .
admin_email: [email protected]
author_name: John Doe
Expand Down
4 changes: 3 additions & 1 deletion examples/with_vite/with_vite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="660743a035e2cb133d8e49503e925b1703e8dcbb5a6bde7dc552a19ddd99719d",
default="ef9cd5b63040249b7cd1a591df9ad0c650934438559139a4bbb9ab490d4064aa",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down Expand Up @@ -390,6 +390,8 @@

AWS_S3_ADDRESSING_STYLE = env.str("AWS_S3_ADDRESSING_STYLE", default="virtual")

AWS_S3_CUSTOM_DOMAIN = env("AWS_S3_CUSTOM_DOMAIN", default=None)

AWS_S3_REGION_NAME = env.str("AWS_S3_REGION_NAME", default=None)

AWS_S3_SIGNATURE_VERSION = env.str("AWS_S3_SIGNATURE_VERSION", default="s3v4")
Expand Down

0 comments on commit 3bf1926

Please sign in to comment.