Upgrade rojo init to create README.md and create Git repo

This commit is contained in:
Lucien Greathouse
2020-03-13 20:00:48 -07:00
parent f7c0f33eb5
commit fe874720aa
8 changed files with 114 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
# {project_name}
Generated by [Rojo](https://github.com/rojo-rbx/rojo) {rojo_version}.
## Getting Started
To build this library or plugin, use:
```bash
rojo build -o "{project_name}.rbxmx"
```

View File

@@ -0,0 +1,6 @@
{
"name": "{project_name}",
"tree": {
"$path": "src"
}
}

View File

@@ -0,0 +1,3 @@
# Roblox Studio lock files
/*.rbxlx.lock
/*.rbxl.lock

View File

@@ -0,0 +1,5 @@
return {
hello = function()
print("Hello world, from {project_name}!")
end,
}