Giter VIP home page Giter VIP logo

adsdeploy's Introduction

ADSAbs 2.0

This is the Flask application for the new ADS website.

After making sure that you have python development files (package python-dev on debian-based systems) installed, the simple installation is:

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

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

$ cat <<EOF> ./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 config/local_config.py and add:

class LocalConfig(object):
    MONGOALCHEMY_USER = 'adsabs'
    MONGOALCHEMY_PASSWORD = 'adsabs'
    ADSDATA_MONGO_USER = 'adsdata'
    ADSDATA_MONGO_PASSWORD = 'adsdata'
    MONGODB_SETTINGS= {'HOST': 'mongodb://adsgut:adsgut@localhost/adsgut', 'DB': 'adsgut'}
    THUMBNAIL_MONGO_PASSWORD = None

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

Jenkins

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)

adsdeploy's People

Contributors

jonnybazookatone avatar romanchyla avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

adsdeploy's Issues

Logic for before deploy worker

Currently, all packets will be forwarded to 'ads.deploy.before_deploy' queue, from the /command end point. There needs to be some logic done by the BeforeDeploy worker, to ensure that nothing crazy happens if multiple conflicting commands are injected.

Queue forwarding

Currently, I have used the self.forward() to send messages to 'ads.deploy.status' for the database to be updated, to make it easier for a developer to see the queue layout. Given this opens an extra connection, this should be modified before prod release.

sv restart webapp doesn't work

it needs to be added to gitpull.sh however even if run manually, it doesn't restart gunicorn

(and I suspect the same happens for the app)

Deployment

List of things to do for deployment, will be updated as we go along:

  • Forward port 9000 to port 9000
  • turn off mission-control
  • test webhooks
  • mount docker:/tmp/adsdeploy.db to a local folder or docker db container /vagrant is already mounted, so its using this. We can change it to db if prefered
  • update /gitpull.sh or make a release, and test it works

future_versions

the /status endpoint should make available versions that are after the current version

db_writer is too restrictive

it insists having all parameters, when application/environment are the only needed

(and maybe not even those, if we want to send generic messages - well, probably we don't wnat)

Integration test worker ADSRex tests

Should turn off any tests that mess with the database, as currently the tests are not written to keep state in mind.

All production tests should also be checked for any issues that may arise.

Production ready environment

Update and test the vagrant files, and configuration properties for production ready deployment of ADSDeploy.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.