grinderl: early stage
I did it! I have try to code my first OTP applications following most of the recommendation of the documentation (and the French book Erlang programmation was a great help).
One of those applications became an opensource project: grinderl. I did blog a bit about it in this blog post, and now it has evolved from the all-in-one-module code to a small ongoing project (hosted by googlecode). To do that I used:
My only regret is that I haven't found a complete tutorial to go through all the steps of transformation of an Erlang program in an OTP application release. And that's too sad that I don't feel able to write one!
One of those applications became an opensource project: grinderl. I did blog a bit about it in this blog post, and now it has evolved from the all-in-one-module code to a small ongoing project (hosted by googlecode). To do that I used:
- application/supervisor/server/fsm/event ... all the generic modules: not complicated
- eunit: simple enough, and tests should be compatible with the test_server application
- dialyzer: wow! it can save a lot of time, especially because Erlang has no type system: a MUST.
- appmon: great and easy to see your supervision tree
- debugger: I still prefer to write message in the console ... please don't tell that to anybody!
- edoc: I learned how to use it, but sadly it didn't teach me to write good documentation...
- mnesia: looks so great!
- release handling: this is a tricky part of OTP application distribution I think!
My only regret is that I haven't found a complete tutorial to go through all the steps of transformation of an Erlang program in an OTP application release. And that's too sad that I don't feel able to write one!
Post imported from wordpress
Please refer to original post for earlier comments.