diff options
author | Adam Spiers <git@adamspiers.org> | 2018-05-16 16:23:36 +0100 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2018-05-16 16:25:24 +0100 |
commit | 26841ee8d610abcefa91142253f48959b2222889 (patch) | |
tree | 497a7d5bea8a933c119a72f7e6fa0b899a098238 | |
parent | 04f5c095d4eccf5808db6dbf90c31a535f7f371c (diff) | |
download | git-deps-1.0.0rc2.tar.gz |
Javascript library installation should be taken care of by pip1.0.0rc2
-rw-r--r-- | INSTALL.md | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -79,13 +79,16 @@ it and also `git deps` (with a space, not a hyphen) should both work. ## Install support for web-based graph visualization (`--serve` option) The web-based graph visualization code uses Javascript and relies on -many third-party modules. Currently only one approach to installation -is listed below, but any Javascript experts who have suggestions about -other ways to install are [warmly encouraged to submit -them](CONTRIBUTING.md). +many third-party modules. If you've installed `git-deps` via `pip` +then these files should all be magically installed without any extra +effort, so you can skip reading the rest of this section. -If you want to use the shiny new graph visualization web server -functionality, you will need to install some additional dependencies: +If however you are installing `git-deps` from source and you want to +use the shiny new graph visualization web server functionality, you +will need to fetch these Javascript libraries yourself. Currently +only one approach to installation is listed below, but any Javascript +experts who have suggestions about other ways to install are [warmly +encouraged to submit them](CONTRIBUTING.md). * Install `browserify`. For example (at least on Linux) if you want it to be accessible directly from the command-line then you can @@ -107,4 +110,5 @@ functionality, you will need to install some additional dependencies: * You will need the [Flask](http://flask.pocoo.org/) Python module installed. -Then `git deps --serve` should work. +Now you should be able to run `git deps --serve` and point your +browser at the URL it outputs. |