https://github.com/notpeter/playdate-template-lua
Playdate Lua Template (VSCode)
https://github.com/notpeter/playdate-template-lua
Last synced: 11 months ago
JSON representation
Playdate Lua Template (VSCode)
- Host: GitHub
- URL: https://github.com/notpeter/playdate-template-lua
- Owner: notpeter
- Created: 2023-09-30T22:09:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T14:38:21.000Z (about 2 years ago)
- Last Synced: 2025-05-14T03:15:23.200Z (about 1 year ago)
- Language: Lua
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template for Playdate Lua projects
## Usage (quick)
```shell
# create a new directory and then cd into it.
mkdir -p ~/code/playdate-myproject
cd ~/code/playdate-myproject
# extract the template into the current directory
curl -sSL https://api.github.com/repos/notpeter/playdate-template-lua/tarball/main | tar x --strip-components=2
```
## Alternative Usage (local)
```shell
PROJECT_NAME="something-something"
mkdir -p ~/code/
git clone https://github.com/notpeter/playdate-template-lua
mkdir -p ~/code/${PROJECT_NAME}
cd ~/code/${PROJECT_NAME}
rsync -av ~/code/playdate-template/template/ ./
```