-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
21 lines (17 loc) · 919 Bytes
/
env.example
File metadata and controls
21 lines (17 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copy this file to 'env' and fill in the values.
# The 'env' file is git-ignored — do not commit it.
# Full path to uvicorn inside your conda environment.
# Find it with: conda run -n sotascope which uvicorn
UVICORN_BIN=/path/to/conda/envs/sotascope/bin/uvicorn
# Data directory for the SQLite database and PDFs.
# Defaults to ~/.sotascope if not set.
# On a shared server, point this to a persistent directory the app user owns.
# SOTASCOPE_DATA_DIR=/path/to/data
# Contact e-mail sent to OpenAlex and Crossref for polite-pool access.
# Gets better rate limits. Can also be set via the Settings page in the UI.
# SOTASCOPE_OPENALEX_API_KEY=your.email@example.com
# SOTASCOPE_CROSSREF_MAILTO=your.email@example.com
# Corporate proxy — if needed for the server to reach OpenAlex and Crossref.
# HTTP_PROXY=http://proxy.example.com:3128
# HTTPS_PROXY=http://proxy.example.com:3128
# NO_PROXY=localhost,127.0.0.1