From 4f4bdc7b6bfc3c5b22b1456366c5ec87d24a6688 Mon Sep 17 00:00:00 2001 From: Michael Nahkies Date: Sun, 15 Nov 2020 09:55:53 +0000 Subject: [PATCH] chore: fix install instructions in readme, .gitignore venv / secret.txt (#68) --- .gitignore | 3 ++- README.md | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 7f220af..2c3f6a9 100644 --- a/.gitignore +++ b/.gitignore @@ -7,9 +7,10 @@ Session.vim /.coverage /tmp /media +/.idea __pycache__ .*.swp - /etebase_server_settings.py +/secret.txt diff --git a/README.md b/README.md index dc05b31..9940271 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,10 @@ Then just clone the git repo and set up this app: git clone https://github.com/etesync/server.git etebase cd etebase -git checkout etebase # Set up the environment and deps -virtualenv -p python3 venv # If doesn't work, try: virtualenv3 venv -source venv/bin/activate +virtualenv -p python3 .venv # If doesn't work, try: virtualenv3 .venv +source .venv/bin/activate pip install -r requirements.txt ```