webapp for unglue.it
 
 
 
 
 
 
Go to file
Ed Summers 273cb0bc6c added key authentication and some api tests 2011-09-15 22:53:44 -04:00
api added key authentication and some api tests 2011-09-15 22:53:44 -04:00
core added key authentication and some api tests 2011-09-15 22:53:44 -04:00
deploy fixed typo (regluit.settigns->regluit.settings) 2011-09-07 10:02:35 -03:00
docs implementation of read-only api for Work, Edition, Subject, Campaign, Author 2011-09-12 14:50:29 -07:00
frontend privacy policy now displays in footer 2011-09-13 14:35:06 -04:00
logs need this log directory 2011-09-04 05:40:12 +00:00
settings working starter API for Work 2011-09-12 13:02:06 -07:00
static changed logo to grey version 2011-09-13 15:03:30 -04:00
test-data added core edition googlebooks lookup and test, plus the start of a load_books management command 2011-09-07 05:34:03 -04:00
.gitignore added a diagram to show core data model and a bit of documentation for how to generate; ignoring .dot files in .gitignore 2011-09-07 16:27:52 -04:00
README.md doc fix 2011-09-10 11:49:44 +00:00
__init__.py setup api, core and frontend apps, also added initial homepage template from stefan 2011-08-30 23:46:55 -04:00
manage.py setup api, core and frontend apps, also added initial homepage template from stefan 2011-08-30 23:46:55 -04:00
requirements.pip added resource filtering to be able to lookup campaigns based on isbn with /api/v1/campaign/?format=json&work__editions__isbn_10=1590171101 2011-09-15 22:33:05 +00:00
urls.py read only api now includes Wishlist and User 2011-09-12 15:44:20 -07:00

README.md

regluit

A 'monolithic' alternative to unglu for the unglue.it website. regluit is essentially a Django project that contains three applications: frontend, api and core that can be deployed and configured on as many ec2 instances that are needed to support traffic. The key difference with unglu is that the frontend app is able to access database models from core in the same way that the api is able to...which hopefully should simplify some things.

Develop

Here are some instructions for setting up regluit for development on an Ubuntu system. If you are on OS X you will need to use Homebrew or some other package manager to install Python and python-setuptools in step 1:

  1. aptitude install python-setuptools
  2. sudo easy_install virtualenv virtualenvwrapper
  3. git clone git@github.com:Gluejar/regluit.git
  4. cd regluit
  5. mkvirtualenv --no-site-packages regluit
  6. pip install -r requirements.pip
  7. add2virtualenv ..
  8. cp settings/dev.py settings/me.py
  9. edit settings/me.py and set EMAIL_HOST_USER and EMAIL_HOST_PASSWORD to your gmail username and password, if you want to see that registration emails will work properly.
  10. edit settings/me.py and look at the facebook, twitter and google auth settings to enable federated logins from those sites
  11. echo 'export DJANGO_SETTINGS_MODULE=regluit.settings.me' >> ~/.virtualenvs/regluit/bin/postactivate
  12. deactivate ; workon regluit
  13. django-admin.py syncdb --migrate
  14. django-admin.py testserver --addrport 0.0.0.0:8000 (you can change the port number from the default value of 8000)
  15. point your browser at http://localhost:8000/