Reputation: 1813
I have a NodeJS application I'm running successfully on Elastic Beanstalk. But for 1 particular script I need to execute a command which uses the Couchapp Python library, like so:
exec( 'couchapp push somefile someurl' );
I want to install this requirement before staring the server with pip, potentially even in a virtualenv in which the NodeJS application starts as well. What's the best way of doing this, since I'm running a NodeJS EB environment?
Upvotes: 1
Views: 652