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 ```