Changes between Version 2 and Version 3 of StartUp
- Timestamp:
- Apr 17, 2012, 3:19:33 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartUp
v2 v3 4 4 5 5 === Standalone application === 6 7 ==== Normal mode ==== 6 8 7 9 To start the tool run from the base directory of RefactorErl … … 50 52 || -yaws\_port PORT || Set yaws port || 51 53 54 ==== Server mode ==== 55 56 RefactorErl can be run as a server, you only have to specify a name with {{{-name}}} or {{{-sname}}} options to the command line. If you do not want to have a command line access to the server you can add the {{{-server}}} option the the starting command, but it is not necessary. 57 58 ==== Client mode ==== 59 60 If you have a running RefactorErl application (let's call it 'server') that was started with {{{-name}}} or {{{-sname}}}, then you can connect to this server with another command line client. In this case you can run Erlang commands that will run on the server. To start the client use the {{{-srvname}}} option with the exact name of the server. You you have used {{{-name}}} with the server, you have to use the same for the client. The same is true for {{{-sname}}} respectively. 61 52 62 === Embedded application === 53 63