Skip to content

Commit fca15b3

Browse files
authored
Fix FILES_STORE and README (#345)
* Fix readme instructions * Fix FILES_STORE which is pointing to /mnt/data
1 parent c6c383f commit fca15b3

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/data/*
2-
!/data/territories.csv
1+
data_collection/data
32

43
# Byte-compiled / optimized / DLL files
54
__pycache__/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ to start running and developing new spiders.
3030
```console
3131
$ python3 -m venv .venv
3232
$ source .venv/bin/activate
33-
$ cd processing/data_collection/
33+
$ cd data_collection
3434
$ pip install -r requirements.txt
3535
```
3636

data_collection/data/.gitkeep

Whitespace-only changes.

data_collection/gazette/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"gazette.pipelines.SQLDatabasePipeline": 500,
1313
}
1414

15-
FILES_STORE = "/mnt/data/"
15+
FILES_STORE = "data"
1616

1717
EXTENSIONS = {
1818
"spidermon.contrib.scrapy.extensions.Spidermon": 500,

0 commit comments

Comments
 (0)