diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | setup_env.bash | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df0eb07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +__pycache__/ +/public/ +/venv/ +/vtestenv/ +.hypothesis/ diff --git a/setup_env.bash b/setup_env.bash new file mode 100644 index 0000000..d25baa9 --- /dev/null +++ b/setup_env.bash @@ -0,0 +1,3 @@ +python -m venv venv && +. venv/bin/activate && +pip install -r requirements.txt |