From d32a241c82cfc3f774b82d71c73d4b4e5d0aa965 Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Thu, 30 Jan 2020 22:38:49 -0300 Subject: Add supporting files --- .gitignore | 5 +++++ setup_env.bash | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 setup_env.bash 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 -- cgit 1.4.1