diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2020-01-30 22:38:49 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2020-01-30 22:38:49 -0300 |
commit | d32a241c82cfc3f774b82d71c73d4b4e5d0aa965 (patch) | |
tree | 2731716fccaa2820d93e7bebd50acfea5c8876ea | |
parent | 6c87b7151c1f7dbf07a309ca6e2cc71800323089 (diff) |
Add supporting files
-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 |