Files
Pinry/README.md

48 lines
1.9 KiB
Markdown
Raw Normal View History

2012-04-26 15:47:42 +00:00
# Pinry
2012-04-26 18:50:52 +00:00
Pinry is a self-hostable [Pinterest][0] "clone" that has a strong resemblance to
2012-04-26 18:49:31 +00:00
[Wookmark][1]. (Because I use their jQuery library and like their design.)
2012-04-26 15:47:42 +00:00
2012-04-26 19:04:52 +00:00
![Pinry Screenshot](https://github.com/overshard/pinry/raw/master/screenshot.png)
2012-04-26 18:49:31 +00:00
## Why?
Because I don't like sharing. I would use these services to store a lot of
images and data that isn't necessarily personal but that I don't actually want
to share or deal with the possibility of having it taken down by a DMCA notice.
2012-04-26 18:50:52 +00:00
My use of Pinterest/Wookmark boils down to having personal board for things I
2012-04-26 18:49:31 +00:00
want to remember or keep for inspiration.
## Plans
2012-04-27 08:45:02 -05:00
Some features that I want to implement, if you know how to implement them then
2012-04-26 18:49:31 +00:00
please do them for me! I'm very pull-request friendly and will not yell at you
for bad code, I'll simply work with you to improve it.
+ Add non-image URL support, take "screenshot" of page as a thumbnail.
+ Create a bookmarklet for quick saving.
+ Manual and automatic tagging via description, image alt tags and whatever else I can scrape.
+ Statistics page with graphs for image views, what times of day have the most posts, etc.
## Getting Started
2012-04-26 15:47:42 +00:00
Have virtualenv and pip installed. You may also need to have the build
dependencies for PIL installed. (If you are on Ubuntu you can do this by typing
"sudo apt-get build-dep python-imaging".)
2012-04-26 15:47:42 +00:00
$ git clone git://github.com/overshard/pinry.git
2012-04-26 15:47:42 +00:00
$ cd pinry
$ virtualenv .
$ bin/pip install -r requirements.txt
$ bin/python manage.py syncdb
$ bin/python manage.py migrate
$ bin/python manage.py runserver
2012-04-26 18:49:31 +00:00
Following this will get you a development server up and running. If you want a
production server [Google around][2] for more information on running Django in a
production environment and create a "pinry/settings/production.py" file.
[0]: http://pinterest.com/
[1]: http://www.wookmark.com/
[2]: https://www.google.com/search?q=deploy+django+production