Code cleanup
This commit is contained in:
parent
358fb234a7
commit
a1cd3d4609
@ -6,13 +6,13 @@ from django.db import migrations, models
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('core', '0006_service_hide_referrer_regex'),
|
("core", "0006_service_hide_referrer_regex"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='service',
|
model_name="service",
|
||||||
name='ignore_robots',
|
name="ignore_robots",
|
||||||
field=models.BooleanField(default=False),
|
field=models.BooleanField(default=False),
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
@ -286,14 +286,14 @@ else:
|
|||||||
NPM_ROOT_PATH = "../"
|
NPM_ROOT_PATH = "../"
|
||||||
|
|
||||||
NPM_FILE_PATTERNS = {
|
NPM_FILE_PATTERNS = {
|
||||||
'a17t': ['dist/a17t.css'],
|
"a17t": ["dist/a17t.css"],
|
||||||
'@fortawesome/fontawesome-free': ['js/all.min.js'],
|
"@fortawesome/fontawesome-free": ["js/all.min.js"],
|
||||||
'tailwindcss': ['dist/tailwind.min.css'],
|
"tailwindcss": ["dist/tailwind.min.css"],
|
||||||
'apexcharts': ['dist/apexcharts.min.js'],
|
"apexcharts": ["dist/apexcharts.min.js"],
|
||||||
'litepicker': ['dist/js/main.js'],
|
"litepicker": ["dist/js/main.js"],
|
||||||
'turbolinks': ['dist/turbolinks.js'],
|
"turbolinks": ["dist/turbolinks.js"],
|
||||||
'stimulus': ['dist/stimulus.umd.js'],
|
"stimulus": ["dist/stimulus.umd.js"],
|
||||||
'inter-ui': ['Inter (web)/*'],
|
"inter-ui": ["Inter (web)/*"],
|
||||||
}
|
}
|
||||||
|
|
||||||
# Shynet
|
# Shynet
|
||||||
|
@ -21,6 +21,6 @@ urlpatterns = [
|
|||||||
path("accounts/", include("allauth.urls")),
|
path("accounts/", include("allauth.urls")),
|
||||||
path("ingress/", include(("analytics.ingress_urls", "ingress")), name="ingress"),
|
path("ingress/", include(("analytics.ingress_urls", "ingress")), name="ingress"),
|
||||||
path("dashboard/", include(("dashboard.urls", "dashboard"), namespace="dashboard")),
|
path("dashboard/", include(("dashboard.urls", "dashboard"), namespace="dashboard")),
|
||||||
path("healthz/", include('health_check.urls')),
|
path("healthz/", include("health_check.urls")),
|
||||||
path("", include(("core.urls", "core"), namespace="core")),
|
path("", include(("core.urls", "core"), namespace="core")),
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user