Writing a program in Scala with actor system.
Need to monitor it with Atmos (Typesafe console)
Found documentation to this using sbt or Eclipse, problem is im looking for a way to :
- Restart/start typesafe console on each run from my IDE
- Run the app with the needed java opt
- Open the console on each run
- Do this automatically
any link to a nice wiki / doc for this issue ?
thanks
This is how i solved this issue in the end (my dev machine is Ubuntu 12.04) :
Download typesafe console from : http://downloads.typesafe.com/typesafe-console-developer/1.3.1/typesafe-console-developer-1.3.1.zip
Extract it to (were using the path /opt/ ) and give permissions to read/write from that folder
Fix your projects dependency (http://resources.typesafe.com/docs/console/manual/getting-started.html)
Create a runnable script to restart the console (put the script in /usr/bin/runAtmos.sh)
script example :
screen shot :
screen shot :
Hope this helps!