diff options
| author | schneefux <schneefux+git@schneefux.xyz> | 2018-04-02 22:13:17 +0200 |
|---|---|---|
| committer | schneefux <schneefux+git@schneefux.xyz> | 2018-04-02 22:13:17 +0200 |
| commit | 422d30584dfd7d72b62a4feb1094cd87fd7684ca (patch) | |
| tree | b3819550e8379f0eb36c6861b7a2c1589f22016a /config_example.py | |
| parent | d239f542a1de1ee1c74b3fc3e14e5c91385ee3bf (diff) | |
| download | ragequitte-422d30584dfd7d72b62a4feb1094cd87fd7684ca.tar.gz ragequitte-422d30584dfd7d72b62a4feb1094cd87fd7684ca.zip | |
first setup of chat crawler & word2vec model
Diffstat (limited to 'config_example.py')
| -rw-r--r-- | config_example.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config_example.py b/config_example.py new file mode 100644 index 0000000..8195a4f --- /dev/null +++ b/config_example.py @@ -0,0 +1,13 @@ +#!/usr/bin/python3 + +redis = { + "host": "localhost", + "port": 6379, + "db": 0 +} + +discord = ["user@mail.org", "passw0rd"] + +model = "models/word2vec_0.0.0" + +debug = True |
