This repository was archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.py
51 lines (40 loc) · 2 KB
/
config.py
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
import os
announcement = ''
# possible values for announcement_class:
# primary secondary success danger warning
# colors: https://getbootstrap.com/docs/4.3/components/alerts/
announcement_class = 'success'
# Hostname and protocol for the Rxivist API
rxapi = "http://api_url_goes_here.org"
# Whether to launch the application with gunicorn as the web server, or
# with Bottle's default. The default can be handy for development because
# it includes the option to reload the application any time there is a
# code change.
use_prod_webserver = True
# How many tweets should a paper accumulate in a day to earn a little
# fire icon next to its entry in the list?
hot_tweetcount = 110
# Maximum time, in seconds, that the front page can be cached
front_page_cache = 600
# Hostname where users will find your site.
# This is needed to build redirect URLs that don't
# break when the web server is behind a reverse proxy.
host = "http://url_goes_here.org"
# Repository listing all DB dumps available for download:
zenodohome = "https://doi.org/10.5281/zenodo.123456" # EXAMPLE VALUE
# Endpoint to send newsletter signup requests.
# Set to an empty string to disable.
mailchimp_post = "" #"https://rxivist.us20.list-manage.com/subscribe/post?u=c273a6689e7b42e4355a1af54&id=6b93ccc8c8"
# PLEASE NOTE: If you are planning to deploy this web application publicly,
# you need permission from Altmetric to incorporate their "attention score"
# information. See https://api.altmetric.com/embeds.html for more information.
display_altmetric = False
# Link to a form to provide feedback on the website
feedback = "https://docs.google.com/forms/d/e/1FAIpQLSfFRRtEYTnhB9XPbG4lat76zdD5CJRpnR_--xGg7WkVTDXl5Q/viewform?usp=sf_link"
repo = "https://github.com/blekhmanlab/rxivist"
twitter = "twitter_handle_here"
# The entity ID provided by Google Analytics
google_tag = "UA-tag_goes_here"
# The validation file provided by the Google Webmaster Tools.
# (Should be placed in the /static directory)
google_validation_file = "google_filename_goes_here.html"