- Add STATIC_ROOT setting for collectstatic command - Configure STATICFILES_DIRS for proper static file management - Create app/static directory structure with documentation - Resolve CI ImproperlyConfigured error for staticfiles app - Ensure static files are properly collected during deployment
12 lines
330 B
Markdown
12 lines
330 B
Markdown
# Static Files Directory
|
|
|
|
This directory contains static files for the Django application.
|
|
|
|
## Structure:
|
|
- `css/` - Custom CSS files
|
|
- `js/` - Custom JavaScript files
|
|
- `img/` - Image assets
|
|
- `fonts/` - Font files
|
|
|
|
Static files are collected to `staticfiles/` directory during deployment via `python manage.py collectstatic`.
|