~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to DEVELOPERS

  • Committer: Usman Akeju
  • Date: 2011-05-26 16:55:44 UTC
  • mto: (1.26.1 push-trunk) (7.1.1 mayon)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: usman.akeju@mail.cuny.edu-20110526165544-5xjkltqrqmehmd3u
- minor code & doc cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
INFORMATION FOR DEVELOPERS
5
5
 
6
 
Updated: 2011-05-17
 
6
Updated: 2011-05-26
7
7
 
8
8
GETTING STARTED
9
9
===============
56
56
Configure
57
57
Test
58
58
Install
 
59
 
 
60
[...]
 
61
 
 
62
* NOTES: The install script by default only installs the standard data for the
 
63
  application to operate. Sample data are provided in [AG_ROOT]/data/samples. To
 
64
  execute both standard and sample data, modify the script
 
65
  [AG_ROOT]/web/install.inc.php by replacing the line
 
66
 
 
67
     Doctrine_Core::loadData(sfConfig::get('sf_data_dir') . '/fixtures', false);
 
68
 
 
69
  with the following three lines
 
70
 
 
71
      $dataDirectories = array(sfConfig::get('sf_data_dir') . '/fixtures',
 
72
                               sfConfig::get('sf_data_dir') . '/samples');
 
73
      Doctrine_Core::loadData($dataDirectories, false);
 
74
 
 
75
       
 
76
  in the doInstall method; otherwise, use the developer tool, clean-project.sh.
 
77
 
59
78
[...]
60
79
>>
61
80