Skip to content

ehenneken/adsabs

 
 

Repository files navigation

ADSAbs 2.0

This is the Flask application for the new ADS website.

The simple installation is:

$ virtualenv some-python $ source some-python/bin/activate $ pip install -U pip $ pip install -U distribute $ pip install -r requirements.txt

You will need a running mongodb instance. Assuming, you are just testing things, you can do:

$ cat < ./mongo_auth.js use admin db.addUser('foo','bar') db.auth('foo','bar') use adsabs db.addUser('adsabs','adsabs') use adsdata db.addUser('adsdata','adsdata') use adsgut db.addUser('adsgut','adsgut') EOF

$ mongo < ./mongo_auth.js

then edit confi/local_config.py and add:

MONGOALCHEMY_USER = 'adsabs'
MONGOALCHEMY_PASSWORD = 'adsabs'
ADSDATA_MONGO_USER = 'adsdata'
ADSDATA_MONGO_PASSWORD = 'adsdata'
MONGODB_SETTINGS= {'HOST': 'mongodb://adsgut:adsgut@localhost/adsgut', 'DB': 'adsgut'}

For more details, see http://labs.adsabs.harvard.edu/trac/ads-invenio/wiki/BeerInstallation or look into the Jenkins task, where we test the setup: http://adswhy:9090/view/BEER/job/BEER-05-live-service/configure

You can have Jenkins automatically test your repository/branch:

  1. got to adswhy:9090 (login)
  2. click on 'create a new job'
  3. select 'copy from' = BEER-02-adsabs
  4. change some values:
    • the git url (and optionally the name of the branch you want to test)
    • port of a mongo db (MongoDB is created for each test, so you just want to avoid using a port that some other tests use)
    • email (to notify you of build problems)

About

Flask for ADS, ADS for Flask, ADS for all

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 45.5%
  • JavaScript 34.7%
  • CSS 12.4%
  • CoffeeScript 7.3%
  • Shell 0.1%