So I upload my site to digitalocean and when I went to the admin page the CSS was not showing
I visit all these sites but nothing seems to work
Pythonanywhere-DjangoStaticFiles
StackOverflow -why my django admin site does not have the css style
I set up my STATIC_ROOT and STATIC_URL, and then I ran
python manage.py collectstatic And here is my seting
STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, '/home/django/django_project/django_project/static') STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static/'), ]