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
- Host: GitHub
- URL: https://github.com/erlware-deprecated/sinan
- Owner: erlware-deprecated
- License: mit
- Created: 2008-08-19T04:10:19.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2012-05-17T19:26:37.000Z (over 12 years ago)
- Last Synced: 2024-07-19T22:45:06.207Z (4 months ago)
- Language: Erlang
- Homepage: http://erlware.github.com/sinan/
- Size: 1.99 MB
- Stars: 88
- Watchers: 4
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
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 commandsinan 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 runsinan 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.