Skip to content

Commit

Permalink
added a template for flow project
Browse files Browse the repository at this point in the history
  • Loading branch information
egkv committed Apr 8, 2015
1 parent fd6667b commit 5d5ff20
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
8 changes: 8 additions & 0 deletions FlowProject/_project_name_.sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders":
[
{
"path": "${project_path}"
}
]
}
1 change: 1 addition & 0 deletions FlowProject/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
20 changes: 20 additions & 0 deletions FlowProject/project.flow
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
project : {
name : "${project_name}",
version : "1.0.0",
author : "${author}",

app : {
name : "${application_name}",
package : "com.${author}.${application_name}",
},

build : {
dependencies : {
}
},

files : {
}
}
}
5 changes: 5 additions & 0 deletions FlowProject/src/Main.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Main {
static function main() {
trace("hello flow");
}
}

0 comments on commit 5d5ff20

Please sign in to comment.