25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

README.md 4.3 KiB

12 yıl önce
12 yıl önce
12 yıl önce
12 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. # ![Pinry](https://github.com/overshard/pinry/raw/master/logo.png)
  2. [![Build Status](https://secure.travis-ci.org/overshard/pinry.png?branch=master)](http://travis-ci.org/overshard/pinry)
  3. Pinry is a private, self-hosted, [Pinterest][0] inspired by [Wookmark][1] and
  4. built on top of Django. Pinry is currently in Alpha/Development, some upgrades
  5. may be ugly/not work till I release v1.0.0.
  6. ![Pinry Screenshot](https://github.com/overshard/pinry/raw/master/screenshot.png)
  7. ## Why?
  8. Mostly because I don't like sharing, I use pinup boards for personal inspiration
  9. boards. Also if I use a public platform like Pinterest or Wookmark then my pins
  10. run the risk of getting a DMCA take down notice. I might not even be able to
  11. pin something at all with websites now blocking tools like this. I rather
  12. bypass all these risks and just host it myself.
  13. ## Getting Started
  14. Pinry has two different customizable configurations:
  15. ### Development
  16. Have virtualenv and pip installed. You may also need to have the build
  17. dependencies for PIL installed.
  18. Note: On Ubuntu you can get the build deps by running
  19. `sudo apt-get build-dep python-imaging`.
  20. $ git clone git://github.com/overshard/pinry.git
  21. $ cd pinry
  22. $ virtualenv .
  23. $ bin/pip install -r development.txt
  24. $ bin/python manage.py syncdb
  25. $ bin/python manage.py migrate
  26. $ bin/python manage.py runserver
  27. ### Production
  28. If you want a production server [Google around][2] for more information on
  29. running Django in a production environment and edit the
  30. `pinry/settings/production.py` file. I don't cover this because there are
  31. hundreds of different ways to deploy a Django project and everyone has their own
  32. preference.
  33. ### Quick Settings
  34. There are a few settings provided specific to Pinry that allow you to get some
  35. of the most requested functionality easily.
  36. + **SITE_NAME**: For quickly changing the name Pinry to something you prefer.
  37. + **ALLOW_NEW_REGISTRATIONS**: Set to False to prevent people from registering.
  38. + **PUBLIC**: Set to False to require people to register before viewing pins.
  39. (Note: Setting PUBLIC to False does still allow registrations. Make sure
  40. both PUBLIC and the previous setting are set to False to prevent
  41. all public access.)
  42. ## Roadmap
  43. + Non-image URL pinning
  44. + Bookmarklet
  45. + Tagging, groups, multiple and/or user boards
  46. + Statistics/analytics with pretty graphs
  47. ## As Seen On
  48. + [USA Today](http://www.usatoday.com/tech/products/story/2012-04-27/pinterest-pinry-private-pinning/54584308/1)
  49. + [Hacker News](http://news.ycombinator.com/item?id=3895618)
  50. + [The Next Web](http://thenextweb.com/apps/2012/04/27/pinry-is-a-self-hosted-version-of-pinterest-that-gives-you-full-control-of-your-pins/)
  51. + [Python Weekly](http://us2.campaign-archive2.com/?u=e2e180baf855ac797ef407fc7&id=1f8c766c90&e=292d864a00)
  52. + [Pycoder's Weekly](http://us4.campaign-archive1.com/?u=9735795484d2e4c204da82a29&id=4f9b37c501)
  53. ## License (Simplified BSD)
  54. Copyright (c) Isaac Bythewood
  55. All rights reserved.
  56. Redistribution and use in source and binary forms, with or without
  57. modification, are permitted provided that the following conditions are met:
  58. 1. Redistributions of source code must retain the above copyright notice,
  59. this list of conditions and the following disclaimer.
  60. 2. Redistributions in binary form must reproduce the above copyright notice,
  61. this list of conditions and the following disclaimer in the documentation
  62. and/or other materials provided with the distribution.
  63. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  64. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  65. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  66. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  67. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  68. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  69. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  70. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  71. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  72. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  73. [0]: http://pinterest.com/
  74. [1]: http://www.wookmark.com/
  75. [2]: https://www.google.com/search?q=deploy+django+production