Skip to content

Commit

Permalink
Amended installer-generation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Jun 14, 2011
1 parent 8f47dca commit 24d7440
Showing 1 changed file with 30 additions and 27 deletions.
57 changes: 30 additions & 27 deletions how_to_release.txt
Expand Up @@ -2,7 +2,7 @@ HOW TO RELEASE MUSHCLIENT
-------------------------

Author: Nick Gammon
Date: 20th July 2010
Date: 14th June 2011

Time required: Approx. 20 minutes.

Expand All @@ -24,6 +24,35 @@ HELP GENERATION
4. Help file (mushclient.hlp) should be generated with no errors or warnings.


GENERATE DOCUMENTATION SQL FROM DATABASE

1. On Ubuntu server, run this:
. dumpdoc.sh

(Must be done on Ubuntu server, to make documentation.sql available for install step below)


UPLOAD AND INSTALL DOCUMENTATION

1. On Ubuntu server, upload:

sftp username@gammon.com.au
cd sql
put documentation.sql.bz2
Ctrl+D

2. Install:

ssh username@gammon.com.au
cd sql
rm documentation.sql
bunzip2 documentation.sql.bz2
. dbsetup
mysql -h $SERVER -u $USER -p $DATABASE < documentation.sql
(password) (RH-click to paste)
Ctrl+D


BUILD RELEASE VERSION

1. Open project 'mushclient'
Expand Down Expand Up @@ -90,33 +119,7 @@ DO ANNOUNCEMENT
UPDATE RELEASE NOTES

1. Change record for relnotes for this release to have today's date as release date


GENERATE DOCUMENTATION SQL FROM DATABASE

1. On Ubuntu server, run this:
. dumpdoc.sh


UPLOAD AND INSTALL DOCUMENTATION

1. Upload:

sftp username@gammon.com.au
cd sql
put documentation.sql.bz2
Ctrl+D

2. Install:

ssh username@gammon.com.au
cd sql
rm documentation.sql
bunzip2 documentation.sql.bz2
. dbsetup
mysql -h $SERVER -u $USER -p $DATABASE < documentation.sql
(password) (RH-click to paste)
Ctrl+D



Expand Down

0 comments on commit 24d7440

Please sign in to comment.