You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Along the same lines as rebar3 newor lein new. In particular, the following should create a new Dragon app skeleton:
$ rebar3 dragon new <project-name>
The result should be a project very similar to what the current lfetool new yaws bootstrap command does (I think that's the lfetool command ...). The first version of this plugin should be an automated process of what the dragon v0 site demonstrates for starting a new project (documentation for that is forthcoming ...).
Provide the following templates:
mod.lfe
app.lfe
sup.lfe
app.src
README.md
rebar.config
lfe.config
gitignore
LICENSE
The text was updated successfully, but these errors were encountered:
Something interesting here is that rebar3 looks for templates in ./priv so I think we can provide templates in rebar3-dragon/priv. Relevant documentation.
As I understand, if you depend on some-plugin which provides templates in its priv, when you call rebar3 in your project root, it will see some-plugin' s templates. I haven't tried it though.
Along the same lines as
rebar3 new
orlein new
. In particular, the following should create a new Dragon app skeleton:The result should be a project very similar to what the current
lfetool new yaws bootstrap
command does (I think that's the lfetool command ...). The first version of this plugin should be an automated process of what the dragon v0 site demonstrates for starting a new project (documentation for that is forthcoming ...).Provide the following templates:
mod.lfe
app.lfe
sup.lfe
app.src
README.md
rebar.config
lfe.config
gitignore
LICENSE
The text was updated successfully, but these errors were encountered: