c1e381eecc
TL;DR: - prefer WPCARRO env-var to BRIEFCASE - remove repository URLs from Emacs libraries - prefer tvl-depot-path where possible - reduce the scope of constants.el - prune (some not all) stale CI configuration Change-Id: I21e9130402502ec6fa2fc4b46753c890069be62d Reviewed-on: https://cl.tvl.fyi/c/depot/+/4545 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
21 lines
421 B
Markdown
21 lines
421 B
Markdown
# 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 -r typescript path/to/new-project
|
|
```
|
|
|
|
This initializes the project. To start developing, run:
|
|
|
|
```shell
|
|
$ nix-shell
|
|
$ yarn run dev
|
|
```
|