diff --git a/api/compose/django/daphne.sh b/api/compose/django/daphne.sh index 16b4d50b8..4fa304143 100755 --- a/api/compose/django/daphne.sh +++ b/api/compose/django/daphne.sh @@ -1,3 +1,3 @@ #!/bin/bash -eux python /app/manage.py collectstatic --noinput -/usr/local/bin/daphne --root-path=/app -b 0.0.0.0 -p 5000 config.asgi:application +/usr/local/bin/daphne -b 0.0.0.0 -p 5000 config.asgi:application diff --git a/api/funkwhale_api/templates/404.html b/api/funkwhale_api/templates/404.html deleted file mode 100644 index b9cb60846..000000000 --- a/api/funkwhale_api/templates/404.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "base.html" %} - -{% block title %}Page Not found{% endblock %} - -{% block content %} -
This is not the page you were looking for.
-{% endblock content %} diff --git a/api/funkwhale_api/templates/500.html b/api/funkwhale_api/templates/500.html deleted file mode 100644 index 21df60665..000000000 --- a/api/funkwhale_api/templates/500.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block title %}Server Error{% endblock %} - -{% block content %} -We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.
-{% endblock content %} - - diff --git a/api/funkwhale_api/templates/base.html b/api/funkwhale_api/templates/base.html deleted file mode 100644 index e8788f44a..000000000 --- a/api/funkwhale_api/templates/base.html +++ /dev/null @@ -1,107 +0,0 @@ -{% load staticfiles i18n %} - - - - -Use this document as a way to quick start any new project.
- {% endblock content %} - -