Changeset f713dbc in OpenWorkouts-current for bin/start


Ignore:
Timestamp:
Feb 11, 2019, 9:47:37 PM (5 years ago)
Author:
Borja Lopez <borja@…>
Branches:
current, feature/docs, master
Children:
b3374f6
Parents:
02aee97
Message:

The bin/start helper runs pip and js_deps to ensure all python and js
dependencies are up-to-date.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bin/start

    r02aee97 rf713dbc  
    99env_path=${current}/env
    1010
     11# Activate the virtual env
    1112. ${env_path}/bin/activate
     13
     14# Now ensure all python and js packages are up-to-date
     15yes | pip install --upgrade -e ${current}[testing] > /tmp/ow-start.stdout 2> /tmp/ow-start.stderr
     16./bin/js_deps > /tmp/ow-start.stdout 2> /tmp/ow-start.stderr
     17
     18# And finally run the server
    1219pserve --reload development.ini
Note: See TracChangeset for help on using the changeset viewer.