mirror of
https://github.com/c0de-archive/django-gallery.git
synced 2024-12-22 02:02:40 +00:00
Add Django Debug Toolbar
This commit is contained in:
parent
51a117ca5f
commit
e4163e8af1
@ -6,7 +6,6 @@ ADD . /src
|
|||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& curl -L https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -o /usr/local/bin/wait-for-it.sh \
|
&& curl -L https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -o /usr/local/bin/wait-for-it.sh \
|
||||||
&& chmod +x /usr/local/bin/wait-for-it.sh \
|
&& chmod +x /usr/local/bin/wait-for-it.sh \
|
||||||
&& pip install -r requirements.txt \
|
&& pip install -r requirements.txt
|
||||||
&& python manage.py collectstatic --noinput
|
|
||||||
|
|
||||||
CMD python manage.py runserver 0.0.0.0:8000
|
CMD python manage.py runserver 0.0.0.0:8000
|
||||||
|
@ -28,6 +28,9 @@ ALLOWED_HOSTS = ['*']
|
|||||||
|
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
INTERNAL_IPS = ('localhost',)
|
INTERNAL_IPS = ('localhost',)
|
||||||
|
DEBUG_TOOLBAR_CONFIG = {
|
||||||
|
'SHOW_TOOLBAR_CALLBACK': (lambda x: True),
|
||||||
|
}
|
||||||
|
|
||||||
# SMTP server/relay to send error emails (to ADMINS) from
|
# SMTP server/relay to send error emails (to ADMINS) from
|
||||||
ADMINS = [('c0de', 'c0de@c0defox.es')]
|
ADMINS = [('c0de', 'c0de@c0defox.es')]
|
||||||
@ -52,6 +55,7 @@ INSTALLED_APPS = [
|
|||||||
]
|
]
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
INSTALLED_APPS += [
|
INSTALLED_APPS += [
|
||||||
|
'debug_toolbar',
|
||||||
'debug_panel'
|
'debug_panel'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -15,7 +15,12 @@ Including another URLconf
|
|||||||
"""
|
"""
|
||||||
from django.conf.urls import url
|
from django.conf.urls import url
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^admin/', admin.site.urls),
|
url(r'^admin/', admin.site.urls),
|
||||||
]
|
]
|
||||||
|
if settings.DEBUG:
|
||||||
|
urlpatterns += [
|
||||||
|
url(r'^__debug__/', include(__import__('debug_toolbar').urls)),
|
||||||
|
]
|
||||||
|
@ -18,4 +18,3 @@ six==1.10.0
|
|||||||
sqlparse==0.2.3
|
sqlparse==0.2.3
|
||||||
uWSGI==2.0.15
|
uWSGI==2.0.15
|
||||||
zipstream==1.1.4
|
zipstream==1.1.4
|
||||||
whitenoise==3.3.1
|
|
||||||
|
1
run.sh
1
run.sh
@ -2,5 +2,6 @@
|
|||||||
cd /portal
|
cd /portal
|
||||||
#cp msmtprc /etc
|
#cp msmtprc /etc
|
||||||
sleep 1 # Hopefully enough for the database to start accepting connections
|
sleep 1 # Hopefully enough for the database to start accepting connections
|
||||||
|
python manage.py makemigrations
|
||||||
python manage.py migrate
|
python manage.py migrate
|
||||||
python manage.py runserver 0.0.0.0:8000
|
python manage.py runserver 0.0.0.0:8000
|
||||||
|
Loading…
Reference in New Issue
Block a user