diff options
Diffstat (limited to 'users/wpcarro/boilerplate/README.md')
-rw-r--r-- | users/wpcarro/boilerplate/README.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/users/wpcarro/boilerplate/README.md b/users/wpcarro/boilerplate/README.md new file mode 100644 index 000000000000..0ff4afa5b24d --- /dev/null +++ b/users/wpcarro/boilerplate/README.md @@ -0,0 +1,21 @@ +# Boilerplate + +Storing some boilerplate code to help me reduce the time it takes me to develop +and deploy applications. + +## Usage + +Let's say that you would like to create a game for +`sandbox.wpcarro.dev/game`. We will create a new TypeScript project with the +following: + +```shell +$ cp ~/briefcase/boilerplate/typescript ~/briefcase/website/sandbox/game +``` + +This initializes the project. To start developing, run: + +```shell +$ nix-shell +$ yarn run dev +``` |