Moving translations to mediagoblin/translations
[mediagoblin.git] / docs / hackinghowto.rst
index 40d14e242d7f69e88a39215b4c111af911b6bd70..b34ce93a91d1095e02e5c77ea6629c20904b6987 100644 (file)
@@ -23,13 +23,21 @@ Second thing to do is take a look at :ref:`codebase-chapter` where
 we've started documenting how GNU MediaGoblin is built and how to add
 new things.
 
+Third you'll need to :ref:`get the requirements
+<get-requirements-section>`.
 
-How to set up and maintain an environment for hacking
-=====================================================
+Fourth, you'll need to build a development environment.  For this step, there are two options: 
 
+1. :ref:`buildout and bootstrap <hacking-with-buildout>` (easier) OR
+2. :ref:`virtualenv <hacking-with-virtualenv>` (more flexible, but harder)
+
+Pick one---don't do both!
+
+
+.. _get-requirements-section:
 
 Getting requirements
---------------------
+====================
 
 First, you need to have the following installed before you can build
 an environment for hacking on GNU MediaGoblin:
@@ -49,22 +57,29 @@ requirements::
     sudo apt-get install mongodb git-core python python-dev \
          python-lxml
 
-After getting the requirements, there are two ways to build a development environment:
+.. YouCanHelp::
 
-1. Running bootstrap and buildout, OR
-2. Creating a virtual environment
+   If you have instructions for other GNU/Linux distributions to set
+   up requirements, let us know!
 
-Pick one---don't do both!
 
+.. _hacking-with-buildout:
 
-Creating a dev environment with bootstrap and buildout
-------------------------------------------------------
+How to set up and maintain an environment for hacking with buildout
+===================================================================
 
 .. Note::
 
    Either follow the instructions in this section OR follow the ones
-   in the next one---don't do both!
+   in :ref:`hacking-with-virtualenv`.  But don't do both!
+
 
+**Requirements**
+
+No additional requirements.
+
+
+**Create a development environment**
 
 After installing the requirements, follow these steps:
 
@@ -84,13 +99,7 @@ session stuff, etc).  You can change this, but for development
 purposes this default should be fine.
 
 
-.. Note::
-
-   We used `zc.buildout <http://www.buildout.org/>`_ because it
-   involves fewer steps to get things running and less knowledge of
-   Python packaging.  However, if you prefer to use `virtualenv
-   <http://pypi.python.org/pypi/virtualenv>`_, that should work just
-   fine.
+**Updating for dependency changes**
 
 While hacking on GNU MediaGoblin over time, you'll eventually have to
 update your development environment because the dependencies have
@@ -98,36 +107,49 @@ changed.  To do that, run::
 
     ./bin/buildout
 
-.. Note::
 
-    You only need to do this when dependencies are updated.  You don't
-    need to do this when you've made code changes.
+**Updating for code changes**
 
+You don't need to do anything---code changes are automatically
+available.
 
-Creating a dev environment with virtualenv
-------------------------------------------
 
-.. Note::
+**Deleting your buildout**
 
-   Either follow the instructions in this section OR follow the ones
-   in the previous one---don't do both!
+At some point, you may want to delete your buildout.  Perhaps it's to
+start over.  Perhaps it's to test building development environments
+with buildout.
+
+To do this, do::
+
+    rm -rf bin develop-eggs eggs mediagoblin.egg-info parts user_dev
+
+Usually buildout works pretty great and is super easy, but if you get
+problems with python-dateutil conflicts on your system, you may need
+to use virtualenv instead.
 
-The following assumes you have these things installed:
 
-1. virtualenv:
+.. _hacking-with-virtualenv:
 
-   http://pypi.python.org/pypi/virtualenv
+How to set up and maintain an environment for hacking with virtualenv
+=====================================================================
 
-2. virtualenv wrapper:
+.. Note::
+
+   Either follow the instructions in this section OR follow the ones
+   in :ref:`hacking-with-buildout`.  But don't do both!
 
-   http://www.doughellmann.com/projects/virtualenvwrapper/
 
-3. git:
+**Requirements**
 
-   http://git-scm.com/
+* virtualenv: http://pypi.python.org/pypi/virtualenv
+* virtualenv wrapper:
+  http://www.doughellmann.com/projects/virtualenvwrapper/ (be sure to
+  read the `install instructions
+  <http://www.doughellmann.com/docs/virtualenvwrapper/install.html>`_)
 
 
-Follow these steps:
+**Create a development environment**
 
 1. Clone the repository::
 
@@ -137,7 +159,8 @@ Follow these steps:
 
        mkvirtualenv --no-site-packages mediagoblin
 
-3. If that doesn't put you in the virutal environment you just created, then do::
+3. If that doesn't put you in the virutal environment you just
+   created, then do::
 
        workon mediagoblin
 
@@ -145,32 +168,60 @@ Follow these steps:
 
        python setup.py develop
 
-
 That's it!
 
+
+**Activating a virtual environment**
+
 When you want to work on GNU MediaGoblin, you need to activate the
 virtual environment like this::
 
     workon mediagoblin
 
+
+**Deactivating a virtual environment**
+
 If you want to deactivate it, you can do this::
 
     deactivate
 
-.. Note::
 
-   You don't have to do anything additional to move changes you're
-   making to your virtual environment because the virtual environment
-   is pointing at the actual code files.
+**Updating a virtual environment with dependency changes**
+
+1. Enter the virtual environment.
+
+2. Run::
+
+      python setup.py develop
+
+
+**Updating a virtual environment with code changes**
+
+You don't need to do anything---code changes are automatically
+available.
+
+
+**Deleting a virtual environment**
+
+At some point you may want to delete your virtual environment.
+Perhaps it's to start over.  Perhaps it's so you can test building
+development environments with virtualenv.
+
+To do this, do::
+
+    rmvirtualenv mediagoblin
 
 
 Running the server
 ==================
 
-Run::
+If you did buildout, run::
 
     ./bin/paster serve mediagoblin.ini --reload
 
+If you did virtualenv, run::
+
+    paster serve mediagoblin.ini --reload
 
 Running celeryd
 ===============
@@ -179,38 +230,52 @@ You need to do this if you want your media to process and actually
 show up.  It's probably a good idea in development to have the web
 server (above) running in one terminal and celeryd in another window.
 
-Run::
+If you did buildout, run::
 
     CELERY_CONFIG_MODULE=mediagoblin.celery_setup.from_celery ./bin/celeryd
 
+If you did virtualenv, run::
+
+    CELERY_CONFIG_MODULE=mediagoblin.celery_setup.from_celery celeryd
 
 Running the test suite
 ======================
 
-Run::
+If you did buildout, run::
 
     ./bin/nosetests
 
+If you did virtualenv, run::
 
-Wiping your environment for a clean-slate
------------------------------------------
+    nosetests
 
-.. Note::
+Troubleshooting
+===============
 
-   Unless you're doing development and working on and testing creating
-   a new instance, you will probably never have to do this.  Will
-   plans to do this work and thus he documented it.
+pymongo.errors.AutoReconnect: could not find master/primary
+-----------------------------------------------------------
+
+If you see this::
+
+    pymongo.errors.AutoReconnect: could not find master/primary
+
+then make sure mongodb is installed and running.
+
+If it's installed, check the mongodb log.  On my machine, that's ``/var/log/mongodb/mongodb.log``.  If you see something like::
 
+    old lock file: /var/lib/mongodb/mongod.lock.  probably means...
 
-Delete the following directories:
+Then delete the lock file and relaunch mongodb.
 
-* bin/
-* develop-eggs/
-* eggs/
-* mediagoblin.egg-info/
-* parts/
-* user_dev/
 
+Wiping your user data
+=====================
+
+.. Note::
+
+   Unless you're doing development and working on and testing creating
+   a new instance, you will probably never have to do this.  Will
+   plans to do this work and thus he documented it.
 
 .. YouCanHelp::