Skip to content

anarchivist/shortimer

 
 

Repository files navigation

shortimer

shortimer is a django web app that collects job announcements from the code4lib discussion list and puts them on the Web. Basically shortimer subscribes to the code4lib discussion list, and periodically pops its email account looking for job advertisements. When it notices what looks like a job ad it adds it to the database, where it can be curated by folks who have an account.

Install

To get shortimer running locally you will need to follow these instructions. The first step installs virtualenv which provides a Python sandbox environment for you to install the other dependencies. Clearly apt-get is only available on Debian based systems, but you will probably have a similar mechanism to get virtualenv installed using other packages managers (homebrew, rpm, etc). From there on things should work independent of what operating system you are using.

  1. sudo apt-get install python-virtualenv mysql-server libmysqlclient-dev
  2. git clone git://github.com/code4lib/shortimer.git
  3. cd shortimer
  4. virtualenv --no-site-packages ENV
  5. source ENV/bin/activate
  6. pip install -r requirements.pip
  7. cp settings.py.template settings.py
  8. in order for people to login with their github, facebook, twitter, linkedin credentials you will need to create applications on those sites, and fill in oauth keys in your settings.py. For development you can probably get by with just one login provider.
  9. python manage.py syncdb --migrate
  10. python manage.py loaddata subjects_keywords
  11. fetch and load the code4lib email archive python manage.py load_mboxes
  12. python manage.py runserver
  13. point web browser at http://locahost:8000

Ideas

It might be useful for shortimer to monitor places where jobs are posted on the web and scrape them, where they could then be approved (or deleted) in the queue. Here are some sites that might be useful to watch:

License

  • CC0

About

a webapp for code4lib jobs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 90.5%
  • Python 6.8%
  • PHP 1.4%
  • Classic ASP 1.3%