jvantuyl / erl-skel

Basic Skeleton Erlang Project

This URL has Read+Write access

Jayson Vantuyl (author)
Tue Oct 13 23:47:35 -0700 2009
commit  d00a0ca11aebf6f5316768fa23b6cab209092452
tree    9cff948e51d87ea2b4cfc43019157125911610f2
parent  574c2e90cd1ddbdfeb85135e71858ebf2101f307
erl-skel / README.skel
100644 29 lines (16 sloc) 0.696 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
This is a skeleton for a basic Erlang environment.
 
The popular tool rake is used to automate a few handy tasks.
 
To start coding, simply execute:
 
  rake new_app[test]
 
This will create a new application named test in a local library (the lib
directory). To get started, look in lib/test-0.1/src. There you can create
modules (.erl files) and they will be automatically compiled. Two sample
modules are provided, that create a simple, skeleton application according to
the OTP design guidelines.
 
To compile everything, execute:
 
  rake compile
 
To get a live environment with your applications loaded, try:
 
  rake console
 
To get a complete list of rake tasks, run:
 
  rake -T
 
Good luck!