Remove post-create-command.sh

This commit is contained in:
emisargent 2023-03-16 16:56:14 +00:00
parent b6a76531b6
commit b1611fbc78

View file

@ -1,13 +0,0 @@
#!/bin/bash
set -e
# Add user's fork as a remote
# if ! git remote | grep -q "fork"; then
# git remote add fork https://github.com/${GITHUB_USER}/flask
# fi
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip setuptools
pip install -r requirements/dev.txt && pip install -e .
pre-commit install