]> scripts.mit.edu Git - wizard.git/blobdiff - README
Update TODO.
[wizard.git] / README
diff --git a/README b/README
index 717e89b2ebb8f93a99b612694f8737f4339b36a9..dc4b28a4e14db7aa86ac10c643da37c84d98d9cf 100644 (file)
--- a/README
+++ b/README
@@ -1,34 +1,16 @@
 Wizard is the new autoinstaller management system for
-scripts.mit.edu.  It resides in:
+scripts.mit.edu.  This is a developer oriented introduction,
+and will get placed in doc/ soon.
 
-    /mit/scripts/wizard
 
-It runs out of the box with the binaries in bin/; try
-`bin/wizard help` for some ideas on what to do.
-Repositories for autoinstall applications should reside
-in srv/, but are not versioned here.
-
-Developers, read on:
-
-== Compatibility ==
+Compatibility
+-------------
 
 This is Python 2.6 only!
 
-== Module overview ==
-
-- deploy: object model for autoinstall deployments, applications
-    and versions
-
-- shell: subprocess wrapper that does logging, error handling
-    and asynchronous processing
-
-- sset: "serialized set", use in a mass* command for tracking
-    what installs have already been seen and successfully processed
 
-- util: miscellaneous utility functions, right now mostly one-off
-    parsing and convenience wrappers
-
-== 'command' package ==
+The command package
+-------------------
 
 To add a new command to wizard, you need to touch the following
 locations:
@@ -36,20 +18,59 @@ locations:
 - bin/wizard
     Add a line describing your command in the helpstring
 
-- wizard/command/__init__.py
-    Add the line "import commandname"
-
-- wizard/command/commandname.py
+- wizard/command/command_name.py
     Implement your command there as main(). Copy the function
     signature and scaffolding from another file; it's non-trivial
+    Underscores in the module-name are referenced using dashes.
 
 As a command file, you're expected to have a main() and parse_args()
 function.  Try to keep main() one to two page function that can
 be browsed for a descriptive overview of what the command does
-internally.  Use helper functions liberally.  Place all error classes
-at the bottom.
+internally.  Use helper functions to create self-documenting
+code.  Don't make helper functions for one-liners.  Place
+all error classes at the bottom.
+
+
+Notes for repository creation
+-----------------------------
+
+See TODO for full instructions.
 
-== Design decisions ==
+- You are not going to be able to doctor a perfect repository
+  from scratch.
+
+    * If you have a simple change to a commit message, or
+      something that you don't really need interactive control
+      over (such as methodically rm'ing a file), git
+      filter-branch is very superior.
+
+    * 'git rebase -p -i' can be used to rewrite history interactively.
+      Doing this will nuke any manual merge resolution you
+      may have done (which may be a lot), thus, I highly
+      recommend that you enable rerere (rerere.enabled = true)
+      so that Git can automatically merge things for you.
+      If the merge fails, you'll still have to reconstitute
+      things manually.
+
+    * You may want to consider using the Git sequencer, for
+      which you can find a patch on the interwebs (I've never
+      tried it before)
+
+- The obvious scripts specific change that a new repository
+  will have are the patches, but you should also check the
+  autoinstall scripts if they do anything special.  In particular:
+
+    - If it's a PHP application, it's probably inserting a php.ini
+      file and creating symlinks to it.  Be sure to replace the
+      appropriate values with placeholders WIZARD_SESSIONNAME
+      and WIZARD_TMPDIR
+
+    - You will probably need to generate relevant configuration
+      files for each version using 'wizard prepare-config'
+
+
+Design decisions
+----------------
 
 - A mass tool will plow ahead even if the subcommand throws
   Wizard errors.  Normal errors will cause us to halt
@@ -59,5 +80,10 @@ at the bottom.
   if we continued going, we will keep going, and let the maintainer
   deal later on with the errors en masse.
 
+  If the error is due to an error in our toolchain (and thus
+  many installs can be fixed by fixing our end), we want to
+  be able to re-run the mass tool with minimal fuss.
+
 - We use the Google Python style guide.  See:
     http://code.google.com/p/soc/wiki/PythonStyleGuide
+  However, we use 4-space indents, not 2-space indents.