This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# checks out the new branch | |
git checkout -b my-branch | |
# add your changes | |
git add . | |
# commit your changes | |
git commit -m 'this is my commit message' | |
# push your changes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enter pipenv | |
pipenv shell | |
# install pipenv dependencies | |
pipenv install | |
# get a list of available commands | |
python manage.py | |
# run import assessors |
OlderNewer