You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pastebin/skel/README.md

20 lines
392 B
Markdown

# mithril-js-skeleton
Bare minimum to start a Mithril JS project.
## Installation
Start your new git repo:
```bash
git init
git commit --allow-empty -m "Intial commit"
```
Copy-in skeleton files:
```bash
git subtree add -P skel --squash https://git.sakal.us/brian/mithril-js-skeleton.git master
mv skel/src/* ./ && rm -rf skel
git add . && git commit -m "Copied-in mithril skeleton"
```