Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathshared.py
More file actions
Latest commit
62 lines (45 loc) · 1.09 KB
/
Copy pathshared.py
File metadata and controls
62 lines (45 loc) · 1.09 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
importos
__VERSION__=''
__PLUGIN_VERSION__=''
# Config settings
AUTH= {}
DEBUG=False
SOCK_DEBUG=False
SOCK_SINGLE_READ=False
EXPERT_MODE=False
FLOOTTY_SAFE=True
ALERT_ON_MSG=True
LOG_TO_CONSOLE=False
HEARTBEAT_TIMEOUT=60
BASE_DIR=os.path.expanduser(os.path.join('~', 'floobits'))
# Shared globals
DEFAULT_HOST='floobits.com'
DEFAULT_PORT=3448
SECURE=True
ERROR_COUNT=0
ERRORS_SENT=0
# Don't spam us with error reports
MAX_ERROR_REPORTS=3
# For people who have outbound ports blocked (schools and BigCos)
OUTBOUND_FILTER_PROXY_HOST='proxy.floobits.com'
OUTBOUND_FILTER_PROXY_PORT=443
OUTBOUND_FILTERING=False
PROXY_PORT=0# Random port
SHARE_DIR=None
COLAB_DIR=''
PROJECT_PATH=''
WORKSPACE_WINDOW=None
PERMS= []
FOLLOW_MODE=False
FOLLOW_USERS=set()
SPLIT_MODE=False
AUTO_GENERATED_ACCOUNT=False
PLUGIN_PATH=None
CHAT_VIEW=None
CHAT_VIEW_PATH=None
TICK_TIME=100
AGENT=None
IGNORE=None
VIEW_TO_HASH= {}
FLOORC_JSON_PATH=os.path.expanduser(os.path.join('~', '.floorc.json'))
INSECURE_SSL=False# Disable SSL cert valifation