Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI for lingo with ECS #106

Merged
merged 15 commits into from
Oct 31, 2024
Prev Previous commit
Next Next commit
fix host patterns
aarongundel committed Oct 24, 2024
commit d14a3d20375e98318fcadf4dc947c50c17b7c253
4 changes: 2 additions & 2 deletions arches_lingo/hosts.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
from django_hosts import patterns, host

host_patterns = patterns(
host(re.sub(r"_", r"-", r"arches_lingo"), "arches_lingo.urls", name="arches_lingo"),
host(r"arches", "arches.urls", name="arches"),
"",
host(r"arches", "arches.urls", name="arches"),
host(re.sub(r"_", r"-", r"arches_lingo"), "arches_lingo.urls", name="arches_lingo"),
)