Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | makefile template fix | Tristan Sloughter | 2015-02-21 | 1 | -1/+1 |
| | |||||
* | cmake template | Tristan Sloughter | 2015-02-21 | 2 | -0/+76 |
| | |||||
* | fix defaults for relx template | Tristan Sloughter | 2014-12-06 | 1 | -2/+2 |
| | |||||
* | fix relx included rebar config typo | Tristan Sloughter | 2014-12-06 | 1 | -1/+1 |
| | |||||
* | remove relx.config from release template | Tristan Sloughter | 2014-12-06 | 1 | -1/+0 |
| | |||||
* | move relx config into rebar config and add prod profile | Tristan Sloughter | 2014-11-30 | 3 | -13/+21 |
| | |||||
* | remove include of rebar header from plugin template | Tristan Sloughter | 2014-11-24 | 1 | -3/+1 |
| | |||||
* | add .rebar3 to gitignore | Tristan Sloughter | 2014-11-23 | 1 | -0/+1 |
| | |||||
* | update provider template for changes to format_error/1 | Tristan Sloughter | 2014-11-23 | 1 | -8/+8 |
| | |||||
* | fix plugin module template, add merl to escript, upgrade erlydtl | Tristan Sloughter | 2014-11-23 | 1 | -2/+1 |
| | |||||
* | Minor template fixes | Fred Hebert | 2014-11-14 | 1 | -0/+1 |
| | | | | | | - The OTP app template now adds the supevisor - The default apps_dir value does not contain the trailing '/' that the template index already added. | ||||
* | Built-in templates create the project directory | Fred Hebert | 2014-11-14 | 4 | -28/+28 |
| | |||||
* | The .tmp0319203 output is gone | Fred Hebert | 2014-11-12 | 1 | -1/+0 |
| | |||||
* | Update plugin templates and doc to use template | Fred Hebert | 2014-11-11 | 1 | -3/+3 |
| | |||||
* | First unkeyed var is now 'name', appid -> name | Fred Hebert | 2014-11-11 | 15 | -35/+35 |
| | | | | | | | The first variable can be unkeyed and the provider will sub in the variable name 'name'. Additionally, the built-in templates and documentation have been updated so that 'appid' is now 'name' and the alternative commands are shown. | ||||
* | Redo templates with docs and whatnot | Fred Hebert | 2014-11-10 | 15 | -62/+98 |
| | | | | | This totally breaks compatibility with rebar2, and maybe it shouldn't have. | ||||
* | fix readme template to use rebar3 command | Tristan Sloughter | 2014-11-05 | 1 | -1/+1 |
| | |||||
* | add modules element to .app file templates | Tristan Sloughter | 2014-11-03 | 2 | -0/+2 |
| | |||||
* | preliminary _checkouts/ support | Tristan Sloughter | 2014-10-13 | 1 | -1/+0 |
| | |||||
* | add otp_app template | Tristan Sloughter | 2014-10-03 | 1 | -0/+7 |
| | |||||
* | move providers to separate app | Tristan Sloughter | 2014-10-03 | 1 | -0/+0 |
| | |||||
* | move deps and plugins to _ prefixed | Tristan Sloughter | 2014-09-20 | 1 | -0/+1 |
| | |||||
* | install plugins to plugins/ | Tristan Sloughter | 2014-09-20 | 1 | -8/+8 |
| | |||||
* | add plugin template | Tristan Sloughter | 2014-09-20 | 3 | -0/+50 |
| | |||||
* | wip: move to erlydtl for rebar templates | Tristan Sloughter | 2014-09-17 | 13 | -0/+0 |
| | |||||
* | fix lib to not start mod | Tristan Sloughter | 2014-09-16 | 3 | -3/+14 |
| | |||||
* | update release run and variables in templates | Tristan Sloughter | 2014-09-16 | 2 | -0/+2 |
| | |||||
* | update templating | Tristan Sloughter | 2014-09-16 | 61 | -1937/+87 |
| | |||||
* | add some templates | Tristan Sloughter | 2014-08-24 | 26 | -17/+580 |
| | |||||
* | Add gen_event template | Antonio Murdaca | 2014-06-15 | 2 | -0/+62 |
| | |||||
* | Error 'Command not found' when sname is used | Habibutsu | 2014-05-27 | 1 | -1/+1 |
| | | | | When a node is configured with -sname the REMSH_NAME_PART argument should be defined with using command 'hostname' but error occurs due extra space | ||||
* | Merge pull request #52 from shino/slim-release-support | Jared Morrow | 2014-05-21 | 3 | -9/+47 |
|\ | | | | | Slim release support | ||||
| * | Add TODO comment to install_upgrade script template | Shunichi Shinohara | 2014-03-09 | 1 | -0/+8 |
| | | |||||
| * | Change nodetool path to under releases/<RELEASE_VERSION>/ | Shunichi Shinohara | 2014-03-09 | 2 | -7/+8 |
| | | |||||
| * | Add slim release support for runner script | Shunichi Shinohara | 2014-03-09 | 1 | -8/+37 |
| | | |||||
* | | Fix #56 (always-on recursion) | Tuncer Ayaz | 2014-03-11 | 2 | -1/+7 |
|/ | | | | | | | | | | | | | | | | | | Always-on recursive application of all rebar commands causes too many issues. Recursive application is required for: 1. dealing with dependencies: get-deps, update-deps, and compile of deps right after get-deps or update-deps 2. projects with a riak-like apps/ project structure and dev process The vast majority of projects are not structured like riak. Therefore, moving forward it's best to (by default) restrict recursive behavior to dealing with deps. This commit does that and also adds command line and rebar.config options for controlling or configuring recursion. Also, we introduce two meta commands: prepare-deps (equivalent to rebar -r get-deps compile) and refresh-deps (equivalent to rebar -r update-deps compile). riak-like projects can extend the list of recursive commands (to include 'eunit' and 'compile') by adding {recursive_cmds, [eunit, compile]} to rebar.config. | ||||
* | Merge pull request #115 from mdaguete/simplenode.runner-remsh-fixes | Andrew Thompson | 2014-03-05 | 1 | -3/+29 |
|\ | | | | | Incorrect REMSH args when sname is used. | ||||
| * | Make REMSH node run in hidden mode | Manuel Durán Aguete | 2013-07-19 | 1 | -1/+1 |
| | | | | | | | | | | To avoid problems with REMSH node being visible from another nodes starts it in hidden mode (erl -hidden). | ||||
| * | Incorrect REMSH args when sname is used | Manuel Durán Aguete | 2013-07-19 | 1 | -2/+28 |
| | | | | | | | | | | | | | | | | | | | | When a node is configured with -sname in app.config or sys.config the REMSH_NAME_ARG and REMSH_REMSH_ARG arguments are incorrect due the assumption that the node name always contains '@'. To fix the bug, the script tries to find '@' and then compose the arguments acording to node name type. If in long name mode the script can't compose a correct node name exits with warning. | ||||
* | | Add command to rebar:command_names/0 | Pierre Fenoll | 2013-12-19 | 1 | -2/+0 |
| | | |||||
* | | Add a library template | Pierre Fenoll | 2013-12-19 | 5 | -0/+39 |
| | | |||||
* | | Change default log level to 'warn' and introduce -q/--quiet | Tuncer Ayaz | 2013-12-06 | 1 | -4/+4 |
| | | |||||
* | | Init RUNNER_SCRIPT var in simplenode.runner | Manuel Durán Aguete | 2013-11-18 | 1 | -0/+1 |
|/ | | | | | RUNNER_SCRIPT variable is not initialized in simplenode.runner and it's referenced when calling sudo. | ||||
* | Merge pull request #54 from mattonrails/simpleapp_sup_template_typo | Dave Smith | 2013-06-14 | 1 | -1/+0 |
|\ | | | | | Remove leading empty line from a template | ||||
| * | Remove leading empty line from a template | Matthew Conway | 2013-01-14 | 1 | -1/+0 |
| | | |||||
* | | Merge pull request #96 from olgeni/pwd-symlink-fix | Dave Smith | 2013-06-12 | 2 | -2/+2 |
|\ \ | | | | | | | Use "pwd -P" to get the current physical path. | ||||
| * | | Use "pwd -P" to get the current physical path. | olgeni | 2013-06-10 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is a portable version of the realpath(1) utility that you can find on Mac OS X and FreeBSD (see also The Open Group Base Specifications Issue 6, IEEE Std 1003.1). Without the -P flag, pwd(1) might return different values when the current path contains one or more symlinks, depending on how you got into the current directory. In simplenode.runner, this may cause PIPE_DIR to have different values on each use, which will make it impossible to connect to the running node unless you guess the correct path yourself. | ||||
* | | | Add support for ping command on windows in the simple node runner | syl20bnr | 2013-05-20 | 2 | -2/+12 |
|/ / | |||||
* | | Do not compile nodetool escript | Tuncer Ayaz | 2013-04-12 | 1 | -2/+0 |
| | | | | | | | | This removes the dependency on lib/compiler in an OTP release. | ||||
* | | simplenode.reltool.config: use default sys-level mod_cond setting | Tuncer Ayaz | 2013-04-06 | 1 | -1/+0 |
| | | | | | | | | | | | | As discussed here http://erlang.org/pipermail/erlang-questions/2012-December/071135.html change the reltool spec to use the default sys-level mod_cond setting. |