Erlang Build Tools--系列4

转载:https://bitbucket.org/basho/rebar/wiki/Conventions

 

Conventions

Rebar expects projects to follow the OTP conventions as described in the OTP Design Principles :

  • application directory with the following sub-directories
    • src
    • ebin
    • priv
    • include
  • application resource file (.app ) to be found in the ebin directory

In addition to the above, rebar presents the following conventions:

  • test directory containing Erlang EUnit test source
  • c_src directory containing C source for building port drivers

你可能感兴趣的:(Erlang Build Tools--系列4)