Bug 239107 - [NEW PORT] www/py-whitenoise: Radically simplified static file serving for wsgi applications
Summary: [NEW PORT] www/py-whitenoise: Radically simplified static file serving for ws...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-07-10 09:39 UTC by Alexander Sieg
Modified: 2019-08-25 18:52 UTC (History)
0 users

See Also:


Attachments
patch (1.62 KB, patch)
2019-07-10 09:39 UTC, Alexander Sieg
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Sieg 2019-07-10 09:39:21 UTC
Radically simplified static file serving for Python web apps

With a couple of lines of config WhiteNoise allows your web app to serve its own
static files, making it a self-contained unit that can be deployed anywhere
without relying on nginx, Amazon S3 or any other external service. (Especially
useful on Heroku, OpenShift and other PaaS providers.)

It's designed to work nicely with a CDN for high-traffic sites so you don't have
to sacrifice performance to benefit from simplicity.

WhiteNoise works with any WSGI-compatible app but has some special auto-
configuration features for Django.

WWW: http://whitenoise.evans.io
Comment 1 Alexander Sieg 2019-07-10 09:39:28 UTC
Created attachment 205653 [details]
patch
Comment 2 commit-hook freebsd_committer freebsd_triage 2019-08-25 18:52:38 UTC
A commit references this bug:

Author: sunpoet
Date: Sun Aug 25 18:51:59 UTC 2019
New revision: 509846
URL: https://svnweb.freebsd.org/changeset/ports/509846

Log:
  Add py-whitenoise 4.1.2

  Radically simplified static file serving for Python web apps

  With a couple of lines of config WhiteNoise allows your web app to serve its own
  static files, making it a self-contained unit that can be deployed anywhere
  without relying on nginx, Amazon S3 or any other external service. (Especially
  useful on Heroku, OpenShift and other PaaS providers.)

  It's designed to work nicely with a CDN for high-traffic sites so you don't have
  to sacrifice performance to benefit from simplicity.

  WhiteNoise works with any WSGI-compatible app but has some special auto-
  configuration features for Django.

  - While I'm here, add NO_ARCH

  WWW: http://whitenoise.evans.io/

  PR:		239107
  Submitted by:	Alexander Sieg <alex@xanderio.de>

Changes:
  head/www/Makefile
  head/www/py-whitenoise/
  head/www/py-whitenoise/Makefile
  head/www/py-whitenoise/distinfo
  head/www/py-whitenoise/pkg-descr
Comment 3 Po-Chuan Hsieh freebsd_committer freebsd_triage 2019-08-25 18:52:57 UTC
Committed. Thanks!