-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from chnm/tailwind-setup
Project setup for django-tailwind
- Loading branch information
Showing
21 changed files
with
2,053 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
db.sqlite3 | ||
.idea/ | ||
lasfera.dbml | ||
data.json | ||
|
||
# Django # | ||
*.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 112 additions & 0 deletions
112
manuscript/migrations/0072_alter_detail_distance_lines_alter_detail_is_sea_red_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Generated by Django 5.0.2 on 2024-05-30 20:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("manuscript", "0071_alter_folio_options_alter_stanza_options"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="distance_lines", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="is_sea_red", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=510, | ||
null=True, | ||
verbose_name="Is the Red Sea colored red?", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="laiazzo", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="standard_water", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="stanzas_ed", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="stanzas_separated", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="detail", | ||
name="tabriz", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="editorialstatus", | ||
name="collated", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="folio", | ||
name="folio_includes_map", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("yes", "Yes"), | ||
("yes_toponyms", "Yes with toponyms"), | ||
("yes_no_toponyms", "Yes without toponyms"), | ||
("no", "No"), | ||
], | ||
max_length=510, | ||
null=True, | ||
verbose_name="Does the folio include a map?", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="folio", | ||
name="folio_number", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="location", | ||
name="line_code", | ||
field=models.CharField( | ||
blank=True, help_text="Citation line code.", max_length=510, null=True | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="location", | ||
name="placename_id", | ||
field=models.CharField( | ||
blank=True, max_length=510, null=True, verbose_name="Placename ID" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="textdecoration", | ||
name="diagrams", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="textdecoration", | ||
name="illumination", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="textdecoration", | ||
name="maps", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="textdecoration", | ||
name="white_vine_work", | ||
field=models.CharField(blank=True, max_length=510, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
"use strict"; | ||
|
||
{ | ||
const dataset = document.currentScript.dataset; | ||
const workerScriptPath = dataset.workerScriptPath; | ||
const eventsPath = dataset.eventsPath; | ||
|
||
if (!window.SharedWorker) { | ||
console.debug("😭 django-browser-reload cannot work in this browser."); | ||
} else { | ||
const worker = new SharedWorker(workerScriptPath, { | ||
name: "django-browser-reload", | ||
}); | ||
|
||
worker.port.addEventListener("message", (event) => { | ||
if (event.data === "Reload") { | ||
location.reload(); | ||
} | ||
}); | ||
|
||
worker.port.postMessage({ | ||
type: "initialize", | ||
eventsPath, | ||
}); | ||
|
||
worker.port.start(); | ||
} | ||
} |
Oops, something went wrong.