forked from guluc3m/gul-zoe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoe.sh
34 lines (27 loc) · 1.01 KB
/
zoe.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# The project path
export ZOE_HOME=/path/to/gul-zoe
# If you have all the required libraries installed, you will not need this.
# If you don't, clone guluc3m/gul-zoe-dependencies project and set this variable:
#export PYTHONPATH=/path/to/gul-zoe-dependencies
export PYTHONPATH=$ZOE_HOME/lib/python:$PYTHONPATH
# Typical values
export ZOE_SERVER_HOST=localhost
export ZOE_SERVER_PORT=30000
# Get this from twitter
export zoe_twitter_consumer_key="..."
export zoe_twitter_consumer_secret="..."
export zoe_twitter_access_token="..."
export zoe_twitter_access_token_secret="..."
# Paramters for Google Talk
export zoe_jabber_host="talk.google.com"
export zoe_jabber_port="5222"
export zoe_jabber_user="..."
export zoe_jabber_password=""
# Parameters for a GMail account
export zoe_mail_smtp="smtp.gmail.com"
export zoe_mail_smtp_port="587"
export zoe_mail_pop3="pop.gmail.com"
export zoe_mail_pop3_port="995"
export zoe_mail_enable_dkim="true"
export zoe_mail_user="$zoe_jabber_user"
export zoe_mail_password="$zoe_jabber_password"