Skip to content

Commit

Permalink
Regenerated examples for 3643b70
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Aug 2, 2024
1 parent 3643b70 commit 817d53f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 15 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: 65a09b2
_commit: 27e7801
_src_path: .
admin_email: [email protected]
author_email: [email protected]
Expand Down
4 changes: 1 addition & 3 deletions examples/default/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-default-app: &default-app
build:
context: .
dockerfile: Dockerfile
target: app
target: dev
env_file: .env
init: true
user: "${UID:-1000}:${GID:-1000}"
Expand All @@ -17,8 +17,6 @@ x-default-app: &default-app
services:
app:
<<: *default-app
build:
target: dev
command: python manage.py runserver 0.0.0.0:8000 --skip-checks
depends_on: *depends-on-db
ports:
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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="7fd8e009da7ebae0cd53b18706d1eb9c8133b5d7107be0d5a2b2d6cebafc88ea",
default="9f2c1786d50c336d5b03843dd845173bb5dfaddd371853fbaa76b7fef2f6631a",
)

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: 4564e10
_commit: '6851682'
_src_path: .
admin_email: [email protected]
author_email: [email protected]
Expand Down
4 changes: 1 addition & 3 deletions examples/postgis/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-default-app: &default-app
build:
context: .
dockerfile: Dockerfile
target: app
target: dev
env_file: .env
init: true
user: "${UID:-1000}:${GID:-1000}"
Expand All @@ -17,8 +17,6 @@ x-default-app: &default-app
services:
app:
<<: *default-app
build:
target: dev
command: python manage.py runserver 0.0.0.0:8000 --skip-checks
depends_on: *depends-on-db
ports:
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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="e3b1a1dd166827ab25bf2ed70d10db5f0cb0c5c09558ffecd76ee1d8ef8f0765",
default="0edf044e2ec520767ac1411f1971ee70aae744668a263d0dfb631be65e681818",
)

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: c3e30af
_commit: '9250567'
_src_path: .
admin_email: [email protected]
author_email: [email protected]
Expand Down
4 changes: 1 addition & 3 deletions examples/with_vite/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-default-app: &default-app
build:
context: .
dockerfile: Dockerfile
target: app
target: dev
env_file: .env
init: true
user: "${UID:-1000}:${GID:-1000}"
Expand All @@ -17,8 +17,6 @@ x-default-app: &default-app
services:
app:
<<: *default-app
build:
target: dev
command: python manage.py runserver 0.0.0.0:8000 --skip-checks
depends_on:
<<: *depends-on-db
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 @@ -232,7 +232,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="bb907d45c9e1c135eb9585922a0b984f76da85aa7b5f3d112fbb7d8f8782b792",
default="112ab536e785609d27d1bc6c890bf09b625e392af54c736514cb85c7504ba64c",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down

0 comments on commit 817d53f

Please sign in to comment.