Changes between Version 3 and Version 4 of GoFlow_Doc
- Timestamp:
- Jun 14, 2008, 3:32:30 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoFlow_Doc
v3 v4 3 3 4 4 = !GoFlow User Guide = 5 GoFlow is a ''django component'' (project to provide application modules to another project django) to add workflow features to a project django.5 GoFlow is a ''django component'' which adds workflow features to a django project. 6 6 7 We'll learn here to use this module, starting a project django very simple ("Hello world"), then gradually addingfeatures.7 We'll learn here how to use this module, starting with a very simple "Hello world" django project, and then gradually add features. 8 8 9 9 == Prerequisite == 10 Create a directory, and copy the directory ''goflow'' in this directory (you can also place it in any directoryPYTHONPATH).10 Create a directory, and copy the directory ''goflow'' to this directory (you can also place it in any directory in your PYTHONPATH). 11 11 12 12 ''Note'': 13 In what follows, using filenames on, while the documentation Django14 advocates the use of absolute paths, this is voluntary, in order to simplify15 expressions and to be neutral vis-à-vis the platform (and it works, at least under Windows)13 In what follows, the use of relative paths, while the Django documentation 14 advocates the use of absolute paths, is voluntary. This is done in order to simplify expressions 15 and to be platform independant (and it works, at least under Windows.) 16 16 17 17 == 1. Project "Hello World" == … … 32 32 ) 33 33 }}} 34 The application ''workflow''contains the "static" model data (modeling35 process), and application ''forums'' contains the dynamic part,or runtime.34 The ''workflow'' application contains the "static" model data (modeling 35 process), and the ''instances'' application contains the dynamic part or runtime. 36 36 37 * Setting up the party's database file settings, for example like this:37 * Setting up the database part of the settings file, for example like this: 38 38 {{{ 39 39 DATABASE_ENGINE = 'sqlite3' … … 41 41 }}} 42 42 43 * Add the following lines 2 in''urls.py'' file:43 * Add the following two lines in the ''urls.py'' file: 44 44 {{{ 45 45 urlpatterns = patterns ('', … … 52 52 }}} 53 53 54 * Create now the database server and start ing with:54 * Create now the database server and start it as this: 55 55 {{{ 56 56 python manage.py syncdb - pythonpath =..