Bluesky-2.sh
· 371 B · Bash
Orginalformat
# use existing nvm to install node 18 and pnpm
make nvm-setup
# pull dependencies and build all local packages
make deps
make build
# run the tests, using Docker services as needed
make test
# run a local PDS and AppView with fake test accounts and data
# (this requires a global installation of `jq` and `docker`)
make run-dev-env
# show all other commands
make help
1 | # use existing nvm to install node 18 and pnpm |
2 | make nvm-setup |
3 | |
4 | # pull dependencies and build all local packages |
5 | make deps |
6 | make build |
7 | |
8 | # run the tests, using Docker services as needed |
9 | make test |
10 | |
11 | # run a local PDS and AppView with fake test accounts and data |
12 | # (this requires a global installation of `jq` and `docker`) |
13 | make run-dev-env |
14 | |
15 | # show all other commands |
16 | make help |