Answer the question
In order to leave comments, you need to log in
What should be the structure of static files inside a Django project?
At the moment, the structure is:
static/
├── build
│ ├── css
│ │ └── main.css
│ ├── fonts
│ ├── images
│ └── js
│ └── main.js
└── src
├── blocks
│ ├── footer
│ └── header
│ ├── header.js
│ └── header.scss
├── fonts
└── images
src
├── blocks
│ ├── footer
│ └── header
│ ├── header.js
│ └── header.scss
├── dependency1
├── dependency2
├── fonts
└── images
src
├── blocks
│ ├── footer
│ └── header
│ ├── header.js
│ └── header.scss
├── fonts
│ ├── dependency1
│ └── dependency2
└── images
├── dependency1
└── dependency2
Answer the question
In order to leave comments, you need to log in
Uncollected statics (+ jade ) - anywhere, better even outside the repository with the django project
Collected - in
└── myapp
├── manage.py
├── myapp
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ ├── wsgi.py
├── requirements.txt
├── templates
│ ├── css
│ │ └── css.css
│ ├── images
│ │ └── image.png
│ ├── index.html
│ ├── js
│ │ └── js.js
│ ├── fonts
│ │ └── font.svg
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question