...
Just my blog

Blog about everything, mostly about tech stuff I made. Here is the list of stuff I'm using at my blog. Feel free to ask me about implementations.

Soft I recommend
Py lib I recommend

I'm using these libraries so you can ask me about them.

Django static files

How to find where def. static stores?

[root@test smm_py]# python3 manage.py findstatic css/base.css admin/js/core.js
No matching file found for 'css/base.css'.
Found 'admin/js/core.js' here:
  /usr/local/lib/python3.4/site-packages/django/contrib/admin/static/admin/js/core.js

Then move it into the folder you need. [su_note]Don't forget to chown and chmod[/su_note] Then update django's.conf file:

Alias /static/ "/var/www/smm_tools/site/"

And check the settings.py:

103 # Static files (CSS, JavaScript, Images)
104 # https://docs.djangoproject.com/en/1.8/howto/static-files/
105
106 STATIC_URL = '/static/'

https://docs.djangoproject.com/en/1.8/howto/static-files/