mirror of https://github.com/zulip/zulip.git
c1675913a2
Ever since we started bundling the app with webpack, there’s been less and less overlap between our ‘static’ directory (files belonging to the frontend app) and Django’s interpretation of the ‘static’ directory (files served directly to the web). Split the app out to its own ‘web’ directory outside of ‘static’, and remove all the custom collectstatic --ignore rules. This makes it much clearer what’s actually being served to the web, and what’s being bundled by webpack. It also shrinks the release tarball by 3%. Signed-off-by: Anders Kaseorg <anders@zulip.com> |
||
---|---|---|
.. | ||
README.md | ||
apple-touch-icon-precomposed.png | ||
zulip-icon-128x128.png | ||
zulip-icon-512x512.png | ||
zulip-icon-circle.svg | ||
zulip-icon-square.svg | ||
zulip-org-logo.svg |
README.md
Generally, we prefer to use SVG assets when possible.
However, many websites where you might want to use a Zulip logo do not
support SVG files. If you need a Zulip logo asset in a different
format (E.g. a 512px height PNG), you can generate that from one of
the .svg
files in this directory.
On Linux, you can generate a PNG of a given height using the following:
rsvg-convert -h 512 static/images/logo/zulip-org-logo.svg -o /tmp/zulip-org-logo-512.png