From 634cf6af6df3633dcc9185b1bb1e4b74b943b469 Mon Sep 17 00:00:00 2001 From: Robyn Speer Date: Thu, 7 Nov 2013 14:43:15 -0500 Subject: [PATCH] data is now hosted on wordfreq.services.luminoso.com Former-commit-id: 56f2c606f1e8c48847f75f354d6e30b69f795b0c --- wordfreq/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wordfreq/config.py b/wordfreq/config.py index 86c225f..77e74da 100644 --- a/wordfreq/config.py +++ b/wordfreq/config.py @@ -16,14 +16,14 @@ CACHE_SIZE = 100000 # Where can the data be downloaded from? DOWNLOAD_URL = (os.environ.get('WORDFREQ_URL') - or 'http://ferret.lumi/dist/wordfreq/') + or 'http://wordfreq.services.luminoso.com/') RAW_DATA_URL = os.path.join(DOWNLOAD_URL, MINOR_VERSION, 'wordfreq-data.tar.gz') DB_URL = os.path.join(DOWNLOAD_URL, MINOR_VERSION, 'wordfreq-%s.db' % MINOR_VERSION) # How do we actually get it there? This is the path, including hostname, to give # to scp to upload the file. -UPLOAD_PATH = 'ferret.lumi:/var/lib/lumi/dist/wordfreq/' +UPLOAD_PATH = 'baldr:/srv/wordfreq/static/' # Where should raw data go? Inside the package isn't necessary a good # place for it, because it might be installed in the system site-packages.