Skip to content

Commit

Permalink
push forward and fix new puput req markdown body (#153)
Browse files Browse the repository at this point in the history
* push forward and fix new puput req markdown body

---------

Co-authored-by: Sarah Boyce <[email protected]>
  • Loading branch information
dawnwages and sarahboyce authored Dec 11, 2023
1 parent 752c8dd commit 84bf683
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions home/puput_migrations/0002_entrypage_markdown_body.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.1.13 on 2023-12-11 07:40

from django.db import migrations
import wagtailmarkdown.fields


class Migration(migrations.Migration):
dependencies = [
("puput", "0001_initial"),
]

operations = [
migrations.AddField(
model_name="entrypage",
name="markdown_body",
field=wagtailmarkdown.fields.MarkdownField(
blank=True, null=True, verbose_name="body (Markdown)"
),
),
]
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# TODO: specify location of requirements file for Oryx Azure deploy
# This file is a duplicate of requirements/requirements.txt used for deploying to Azure.

Django==4.1.5
wagtail==4.1
Django==4.1.13
wagtail==4.1.9
django-bootstrap5==22.2
django-storages
django-storages[azure]
psycopg2-binary
whitenoise
python-dotenv
puput==1.2.0
puput==2.0.0
django-recaptcha==3.0.*
django-anymail==9.0
six==1.16.*
Expand Down
6 changes: 3 additions & 3 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==4.1.5
wagtail==4.1
Django==4.1.13
wagtail==4.1.9
django-bootstrap5==22.2
django-storages
django-storages[azure]
Expand All @@ -9,7 +9,7 @@ six==1.16.*
django-recaptcha==3.0.*
whitenoise
python-dotenv
puput==1.2.0
puput==2.0.0
urllib3==1.26.6
django-extensions
django-debug-toolbar

0 comments on commit 84bf683

Please sign in to comment.