Skip to content

Commit

Permalink
Regenerated examples for 37ab0a0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Apr 26, 2024
1 parent 37ab0a0 commit f0ba698
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 27 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: b49839a
_commit: 151255e
_src_path: .
admin_email: admin@example.com
author_name: John Doe
Expand Down
15 changes: 8 additions & 7 deletions examples/default/Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,16 @@ _default:
# Bootstrap local development environment
bootstrap:
@just pup
@just lock
@just install

# Generate requirements file
lock *ARGS:
python -m uv pip compile {{ ARGS }} --generate-hashes requirements.in --output-file requirements.txt

# Install dependencies
install *ARGS:
python -m uv pip install --upgrade -r requirements.txt

# Generate and upgrade dependencies
upgrade:
@just lock --upgrade
# Generate requirements file
lock *ARGS:
python -m uv pip compile {{ ARGS }} --generate-hashes requirements.in --output-file requirements.txt

# Install and update dependency tools
pup:
Expand All @@ -37,6 +34,10 @@ update:
@just upgrade
@just install

# Generate and upgrade dependencies
upgrade:
@just lock --upgrade

# ----------------------------------------------------------------------
# TESTING/TYPES
# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/default/default/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="7004b9c013e562ae6cb2778d7fb6501ae010a5203e59549aa1f2f842cda5a4f4",
default="ddd8df5d0d81701f63fd05fa00ff83e94467413be1232de8751f9914f6ee84eb",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
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: 026cf31
_commit: fad9119
_src_path: .
admin_email: admin@example.com
author_name: John Doe
Expand Down
15 changes: 8 additions & 7 deletions examples/postgis/Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,16 @@ _default:
# Bootstrap local development environment
bootstrap:
@just pup
@just lock
@just install

# Generate requirements file
lock *ARGS:
python -m uv pip compile {{ ARGS }} --generate-hashes requirements.in --output-file requirements.txt

# Install dependencies
install *ARGS:
python -m uv pip install --upgrade -r requirements.txt

# Generate and upgrade dependencies
upgrade:
@just lock --upgrade
# Generate requirements file
lock *ARGS:
python -m uv pip compile {{ ARGS }} --generate-hashes requirements.in --output-file requirements.txt

# Install and update dependency tools
pup:
Expand All @@ -37,6 +34,10 @@ update:
@just upgrade
@just install

# Generate and upgrade dependencies
upgrade:
@just lock --upgrade

# ----------------------------------------------------------------------
# TESTING/TYPES
# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/postgis/default/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="12f687db4562c6f18f4165c01910a35f154339353d5dd8c931a5f18b25e542e2",
default="ff35658a31a918adb66256b6d2fb5b73b16b934078f5f3f56d66801dfebfdff7",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
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: 470a113
_commit: 29a8b56
_src_path: .
admin_email: admin@example.com
author_name: John Doe
Expand Down
15 changes: 8 additions & 7 deletions examples/with_vite/Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,16 @@ _default:
# Bootstrap local development environment
bootstrap:
@just pup
@just lock
@just install

# Generate requirements file
lock *ARGS:
python -m uv pip compile {{ ARGS }} --generate-hashes requirements.in --output-file requirements.txt

# Install dependencies
install *ARGS:
python -m uv pip install --upgrade -r requirements.txt

# Generate and upgrade dependencies
upgrade:
@just lock --upgrade
# Generate requirements file
lock *ARGS:
python -m uv pip compile {{ ARGS }} --generate-hashes requirements.in --output-file requirements.txt

# Install and update dependency tools
pup:
Expand All @@ -37,6 +34,10 @@ update:
@just upgrade
@just install

# Generate and upgrade dependencies
upgrade:
@just lock --upgrade

# ----------------------------------------------------------------------
# TESTING/TYPES
# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/with_vite/with_vite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="2bfc9f3f1796367bf329528bba82d7f852ce02804e1382a13f5b940ccc14c6bc",
default="5e4213397968c27cd601a540a5ebc23d4263631dc9ad33f2b1ff1b344ebeba52",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down

0 comments on commit f0ba698

Please sign in to comment.