1
0
Fork 0
satnogs-db/docs/maintenance.rst

32 lines
675 B
ReStructuredText
Raw Normal View History

2018-10-27 14:49:45 -06:00
Maintenance
===========
Updating Python dependencies
----------------------------
To update the Python dependencies:
#. Execute script to refresh ``requirements{-dev}.txt`` files::
$ ./contrib/refresh-requirements.sh
#. Stage and commit ``requirements{-dev}.txt`` files.
2018-10-27 14:49:45 -06:00
Updating frontend dependencies
------------------------------
The frontend dependencies are managed with ``npm``.
To update the frontend dependencies, while respecting semver:
2018-10-27 14:49:45 -06:00
#. Update all the packages listed in ``package.json``::
2018-10-27 14:49:45 -06:00
$ npm update
2018-10-27 14:49:45 -06:00
#. Test and copy the newly downlodaded static assets::
2018-10-27 14:49:45 -06:00
$ ./node_modules/.bin/gulp
2018-10-27 14:49:45 -06:00
#. Stage and commit ``package-lock.json`` file.