diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-02-22 14:47:33 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-02-22 14:47:33 -0600 |
commit | 41dbb27a4f162b5c2b109d2214c5ccd2946ed535 (patch) | |
tree | 4e3c75d7fb657c6bd9ddd75eeff72990f9adff62 | |
parent | 15c5b332e7dbe740befefa3e28be10a5e5ce5d75 (diff) | |
download | mediagoblin-41dbb27a4f162b5c2b109d2214c5ccd2946ed535.tar.lz mediagoblin-41dbb27a4f162b5c2b109d2214c5ccd2946ed535.tar.xz mediagoblin-41dbb27a4f162b5c2b109d2214c5ccd2946ed535.zip |
Switch docs over to suggest using bootstrap with configure and make
-rw-r--r-- | docs/source/siteadmin/deploying.rst | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst index 02e607ee..bb77c2ce 100644 --- a/docs/source/siteadmin/deploying.rst +++ b/docs/source/siteadmin/deploying.rst @@ -198,25 +198,9 @@ Clone the MediaGoblin repository and set up the git submodules:: git submodule init && git submodule update -And set up the in-package virtualenv:: +Set up the hacking environment:: - (virtualenv --python=python2 --system-site-packages . || virtualenv --python=python2 .) && ./bin/python setup.py develop - -.. note:: - - We presently have an **experimental** make-style deployment system. if - you'd like to try it, instead of the above command, you can run:: - - ./bootstrap.sh && ./configure && make - - This also includes a number of nice features, such as keeping your - viratualenv up to date by simply running `make update`. - - Note: this is liable to break. Use this method with caution. - -You then need to make a local copy of mediagoblin.ini, if you don't have one:: - - cp --no-clobber mediagoblin.example.ini mediagoblin.ini + ./bootstrap.sh && ./configure && make The above provides an in-package install of ``virtualenv``. While this is counter to the conventional ``virtualenv`` configuration, it is |