initial project code commit
This commit is contained in:
17
config/setup/configure-dev.sh
Executable file
17
config/setup/configure-dev.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
echo "cleaning previous environment..."
|
||||
rm -rf .venv
|
||||
|
||||
echo "creating new environment..."
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
|
||||
echo "install pip..."
|
||||
python3 -m ensurepip --default-pip
|
||||
|
||||
echo "install requirements..."
|
||||
pip install -r requirements-dev.txt
|
||||
|
||||
echo "finished"
|
||||
Reference in New Issue
Block a user