Changes between Version 4 and Version 5 of MakeProject


Ignore:
Timestamp:
Apr 20, 2007, 12:40:46 PM (17 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MakeProject

    v4 v5  
    1414    * Create and initialize the MySQL database
    1515    * Copy source and executable files
    16     * Generate the project's configuration file. 
     16    * Generate the project's configuration file.
    1717
    18 The script gives further instructions, namely
     18By default, the project will have a test application (uppercase)
     19and will have daemons to generate and handle work for this application.
     20This lets you quickly check that the project is working;
     21you can remove the test application later
     22(by editing config.xml).
    1923
    20     * It generates a template Apache config file that you can insert into /etc/apache/httpd.conf (path varies), or Include from that file.
    21     * It generates a crontab line to paste.
     24The following steps are needed to complete the project setup:
     25
     26    * Insert PROJECT_NAME.http.conf into /etc/apache/httpd.conf (path varies), or Include it from that file.
     27    * Run crontab -e, and add an entry to run the project's cron script:
     28{{{
     29 0,5,10,15,20,25,30,35,40,45,50,55 * * * * PROJECT_HOME/bin/start --cron
     30}}}
     31   * Run bin/xadd and bin/update_versions in the project's home directory.
     32
     33The script prints instructions for these steps.
    2234
    2335The command-line syntax is as follows:
     
    4355|| --db_passwd ||       Database password. Default: None ||
    4456|| --drop_db_first      || Drop database first (from prev installation) ||
    45 == debugging options ==
     57== Miscellaneous options ==
     58|| --no_test_app      ||  don't install test application ||
    4659|| --verbose={0,1,2}    || default: 1 ||
    4760|| -v   || alias for --verbose=2 ||