Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/erlware-deprecated/sinan

Erlang/OTP oriented build system
https://github.com/erlware-deprecated/sinan

Last synced: 3 months ago
JSON representation

Erlang/OTP oriented build system

Lists

README

        

README
======

What is Sinan
-------------

Sinan is a build tool designed to build Erlang/OTP Projects, Releases
and Applications. Sinan leverages the metadata artifacts provided by
OTP to do a good job building, testing, releasing, etc with very
little or no additional input from the developer.

Getting Sinan
-------------

By far the easiest way to get sinan is to download it from the
[downloads site](https://github.com/erlware/sinan/downloads).

More Information and FAQ
------------------------

Sinan has extensive further documentation in its
[wiki on github](https://github.com/erlware/sinan/wiki). Check there
for more information.

The Sinan FAQ is available at
[here](https://github.com/erlware/sinan/wiki/FAQ).

### The Community

A community exists around Sinan and the other Erlware projects. You
may participate in the community and ask questions by joining the
[erlware-questions](http://groups.google.com/group/erlware-questions)
mailing list.

Quick Start
-----------

To get started just cd into an OTP Application and type

sinan build

This will give you an fully built OTP application under the _build
directory. You can then run the command

sinan shell

to get an erlang shell with all the paths pointing correctly to the
various parts of your system.

If you want to get adventurous you can run all the eunit tests in your
app by running:

sinan test

and finially, if you want to package up a normal erlang release
tarball you can run

sinan dist

The tarball will end up in

/_build//tar/-.tar.gz

To get a list of all tasks currently available run the command

sinan help

Hopefully thats enough to get you started, but sinan has many options
to do various things with projects from small single app projects to
very large multiple app projects. To get more information take a look
at the sinan manual.