I am deploying an Django app to Stackato. Everything works fine except static files. According to the documentation, here is my setting in .yml file:
processes:
web: $STACKATO_UWSGI --static-map /static=$HOME/static
And here is my local setting.py:
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(PROJECT_PATH, "static"),
'/var/www/static/',
)
Also, here is my project structure
Project -- .....
|
static -- css
|
-- images
I did not see any error from the log. Any idea?