Add welcome message

This commit is contained in:
emisargent 2023-02-10 19:30:33 +00:00
parent a927a243b0
commit 3baa270f7c
3 changed files with 11 additions and 9 deletions

View file

@ -4,12 +4,10 @@ set -e
# Add user's fork as a remote
GIT_USER=$(git config user.name)
git remote add fork https://github.com/${GIT_USER}/flask
echo "Added remote"
# Create and activate a virtualenv
python3 -m venv .venv
. .venv/bin/activate
echo "Created virtualenv"
# Upgrade pip and setuptools
python -m pip install --upgrade pip setuptools