Changes between Version 4 and Version 5 of MakeProject
- Timestamp:
- Apr 20, 2007, 12:40:46 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MakeProject
v4 v5 14 14 * Create and initialize the MySQL database 15 15 * Copy source and executable files 16 * Generate the project's configuration file. 16 * Generate the project's configuration file. 17 17 18 The script gives further instructions, namely 18 By default, the project will have a test application (uppercase) 19 and will have daemons to generate and handle work for this application. 20 This lets you quickly check that the project is working; 21 you can remove the test application later 22 (by editing config.xml). 19 23 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. 24 The 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 33 The script prints instructions for these steps. 22 34 23 35 The command-line syntax is as follows: … … 43 55 || --db_passwd || Database password. Default: None || 44 56 || --drop_db_first || Drop database first (from prev installation) || 45 == debugging options == 57 == Miscellaneous options == 58 || --no_test_app || don't install test application || 46 59 || --verbose={0,1,2} || default: 1 || 47 60 || -v || alias for --verbose=2 ||