Skip to content

Commit

Permalink
Add env variables for virtualenv.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasThoren committed Sep 20, 2016
1 parent 1d843ba commit 5feab9e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/backup.sh
@@ -1,5 +1,9 @@
#!/bin/bash

# Declare environment variables needed for virtualenvwrapper.
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME

source `which virtualenvwrapper.sh`

workon realestate
Expand Down
4 changes: 4 additions & 0 deletions scripts/local_backup.sh
@@ -1,5 +1,9 @@
#!/bin/bash

# Declare environment variables needed for virtualenvwrapper.
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME

source `which virtualenvwrapper.sh`

workon realestate
Expand Down
4 changes: 4 additions & 0 deletions scripts/main.sh
@@ -1,5 +1,9 @@
#!/bin/bash

# Declare environment variables needed for virtualenvwrapper.
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME

source `which virtualenvwrapper.sh`

workon realestate
Expand Down
4 changes: 4 additions & 0 deletions scripts/rebuild.sh
@@ -1,5 +1,9 @@
#!/bin/bash

# Declare environment variables needed for virtualenvwrapper.
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME

source `which virtualenvwrapper.sh`

workon realestate
Expand Down

0 comments on commit 5feab9e

Please sign in to comment.