DEV Community

Discussion on: I love pipenv's custom script shortcuts

Collapse
 
snregales profile image
Sharlon Regales • Edited

is it possible to use a placeholder in a custom script?
example:
[scripts]
app="./manage.py startapp <appname> src"

python -m pipenv run app account

this will run the following
./manage.py start app account src

this will place the newly created app in the src directory