You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add a comparison option to the crawler and create some test covearge.
* Add script to make crawling and classification updates easier.
* Clean up and fix script for non-archives.
* Add fields and UI for crawl data.
* Clean up and add previous json option to crawl script.
* Further refine comparision logic and allow resuming scrape with json file.
* Add more robust date handling.
* Make sure last_crawl_date is available before formatting.
* Add crawl date to all rows.
* Make column order irrelevant in test.
* Make document_status optional, but set a default value.
* Get rid of bloated date helper.
* Fix up linting.
* Add lightweight test for import rake.
* General cleanup.
* Temporarily add 2025-09 crawl.
* Fix up linting.
* Fix more linting issues.
* Fix bad logic in default value setter.
* Update the tests.
* Fix tests with old status values.
* Add test for document status tags.
* Add latest crawl and remove intermediate version.
* Add a couple of small tweaks to docs.
* Add a staging credentials file.
* Add updated .gitignore.
Copy file name to clipboardExpand all lines: docs/windows_localdev.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ We've tested two approaches for Windows development:
25
25
26
26
**Prerequisites:**
27
27
- Clone the repository to your WSL home directory (this avoids file permission issues)
28
-
- Install Yarn: `npm install yarn -y`
28
+
- Install Yarn: `npm install yarn -g`
29
29
30
30
**Configuration Steps:**
31
31
@@ -36,7 +36,9 @@ We've tested two approaches for Windows development:
36
36
```
37
37
38
38
2.**Update database configuration:**
39
-
- Make sure Postgres credentials in `config/database.yml` match your Postgres setup
39
+
- If your Postgres service was set up to allow "trust" authentication for local connections, you may not need to change anything.
40
+
- If you created a user with a password during database setup, add a username and password entry to the development section of `config/database.yml`. See the `staging` section for an example.
0 commit comments