We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 425bece commit f1542d7Copy full SHA for f1542d7
.gitignore
@@ -5,6 +5,8 @@ __pycache__/
5
6
*~
7
8
+.DS_Store
9
+
10
# C extensions
11
*.so
12
Dockerfile
@@ -8,7 +8,7 @@ WORKDIR /app
COPY . /app
# Install any needed packages specified in requirements.txt
-RUN pip install -r requirements.txt
+RUN pip install --no-cache-dir -r requirements.txt
13
# Grant execution permissions to the start-up script
14
RUN chmod a+x start.sh
README.md
@@ -27,6 +27,7 @@ cp env_template .env
27
The variables in .env
28
29
```shell
30
+DISKCACHE_DIR="diskcache_dir"
31
SQLITE_DB_DIR="sqlite_dir"
32
SQLITE_DB_NAME="mydatabase.sqlite3"
33
MAX_CRAWL_PARALLEL_REQUEST=5
doc/screenshot-7.jpg
7.88 KB
0 commit comments