Skip to content

Commit

Permalink
Regenerated examples for 2d9ee90
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jul 31, 2024
1 parent 2d9ee90 commit 88e8885
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 36 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: 7c6551b
_commit: 73badc0
_src_path: .
admin_email: [email protected]
author_email: [email protected]
Expand Down
32 changes: 22 additions & 10 deletions examples/default/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ env:
CI: true
FORCE_COLOR: 1
NODE_VERSION: "20"
PYTHON_REQUIREMENTS: "requirements.txt"
PYTHON_VERSION: "3.12"

permissions:
Expand Down Expand Up @@ -43,12 +42,15 @@ jobs:
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
node-version: ${{ env.NODE_VERSION }}
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install system packages
env:
Expand Down Expand Up @@ -86,12 +88,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install system packages
env:
Expand All @@ -110,12 +117,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install dependencies
env:
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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="7d263184f30137edf5c3490068cfd4789047d64e8e726a845a47fd03af007808",
default="34a29fcbee7ec5dea552117bb31982bb4e5d37be0e32173327e2a8bc209873ad",
)

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: 254a63a
_commit: 378f1d4
_src_path: .
admin_email: [email protected]
author_email: [email protected]
Expand Down
32 changes: 22 additions & 10 deletions examples/postgis/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ env:
CI: true
FORCE_COLOR: 1
NODE_VERSION: "20"
PYTHON_REQUIREMENTS: "requirements.txt"
PYTHON_VERSION: "3.12"

permissions:
Expand Down Expand Up @@ -43,12 +42,15 @@ jobs:
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
node-version: ${{ env.NODE_VERSION }}
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install system packages
env:
Expand Down Expand Up @@ -92,12 +94,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install system packages
env:
Expand All @@ -122,12 +129,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install dependencies
env:
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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="6203a293f513eb91a9e1fe7d7d1b5b1784b2ad473f5380d9158cc251aa7a8fef",
default="db1f3ea3bd951eb59471d9314cd55bfcdc6711182cf8220a1b56cb395b5860e3",
)

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: 97ffeae
_commit: e92ce71
_src_path: .
admin_email: [email protected]
author_email: [email protected]
Expand Down
32 changes: 22 additions & 10 deletions examples/with_vite/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ env:
CI: true
FORCE_COLOR: 1
NODE_VERSION: "20"
PYTHON_REQUIREMENTS: "requirements.txt"
PYTHON_VERSION: "3.12"

permissions:
Expand Down Expand Up @@ -43,12 +42,15 @@ jobs:
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
node-version: ${{ env.NODE_VERSION }}
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install system packages
env:
Expand Down Expand Up @@ -90,12 +92,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install system packages
env:
Expand All @@ -114,12 +121,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: westerveltco/setup-ci-action@v0
- uses: westerveltco/setup-ci-action@simplify
with:
python-version: ${{ env.PYTHON_VERSION }}
python-requirements: ${{ env.PYTHON_REQUIREMENTS }}
use-uv: true

- name: Install dependencies
run: |
python -m uv pip install --system -r requirements.txt -r requirements.dev.txt
npm install
- name: Install dependencies
env:
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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="780c42c6e88080216340ab66c9db80ba16a684e90eed8abc839e4ec93b4bed4f",
default="81ee509bd988c08698e8f210b53e05c8f4c1a567f37683d0201009de1d051c8b",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down

0 comments on commit 88e8885

Please sign in to comment.