Re: Collectstatic not working

2013-02-10 Thread Brad
The problem is that you have your STATIC_ROOT as one of the STATICFILES_DIRS. The STATIC_ROOT directory should be empty, that is where all the static files from different places will be gathered when you run collectstatic. You should probably create a static directory under the myapp directory and

Re: Collectstatic not working

2013-02-10 Thread Lucas Magnum
Remove the os.path.join(PROJECT_PATH, 'static'), >From staticfiles_dir by default this already included. []'s Lucas Magnum. 2013/2/10 Satinderpal Singh > I am trying to configure the static files for my project by following the > Django guide