Update README.md

This commit is contained in:
2019-09-16 04:58:01 -04:00
committed by GitHub
parent 6101cfe78a
commit e867240aa8
+9 -15
View File
@@ -51,6 +51,13 @@ install: node-deps python-deps
format:
black .
python-deps:
pipenv install
node-deps:
yarn install
system-deps: @confirm
brew install pipenv
python-example:
#!/usr/bin/env python
import os
@@ -59,22 +66,9 @@ python-example:
print(os.environ['KEY'])
print(sys.argv[1:])
bash-example:
set -euxe
echo "$KEY"
echo $@
python-deps:
pipenv install
node-deps:
yarn install
system-deps: @confirm
brew install pipenv
dangerous-example: @confirm:secure
rm -fr *
# Pretend it's deploying to production :P
rm -fr /
```