Skip to content

Commit fb10f15

Browse files
authored
Merge pull request #2071 from hackforla/ssiegal.2070
Fixed a path in readme, and another path in git workflow
2 parents 1958c6e + c58e51d commit fb10f15

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

.github/workflows/hfUpdate.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
defaults:
1111
run:
12-
working-directory: scripts/
12+
working-directory: src/scripts/
1313
steps:
1414
- name: Checkout code
1515
uses: actions/checkout@v2
@@ -28,3 +28,7 @@ jobs:
2828
echo "VITE_ENV=${{ secrets.VITE_ENV }}" >> .env
2929
- name: Run script
3030
run: python updateHfDataset.py
31+
32+
# Notes on running this thing on macos:
33+
# brew install act
34+
# act -j run --verbose (verbose since the steps take so long the first time)

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Our application is open source, built and maintained by volunteers throughout ou
2121
1. An interactive map showing where different types of 311 requests are being submitted
2222
1. Dashboards that show what types of requests are being made, how quickly they're being resolved, how different councils compare, and more
2323

24-
![screenshot](./assets/screenshot.PNG)
24+
![screenshot](./src/assets/screenshot.PNG)
2525

2626
Our mission is to create a user-friendly platform for anyone interested in exploring 311 service requests so that they can immediately gain actionable insights. If you would like to contribute as a volunteer, please visit the [Open Roles Board](https://github.com/orgs/hackforla/projects/67/views/1?filterQuery=repo%3A%22hackforla%2F311-data%22+status%3A%22Currently+Recruiting%22).
2727

@@ -71,6 +71,23 @@ Our mission is to create a user-friendly platform for anyone interested in explo
7171

7272
See [contributing.md](contributing.md#testing) for info on writing tests.
7373

74+
## Run data update cron job locally on macOS
75+
76+
### (one time) Install the act tool
77+
78+
See act [installation docs](https://nektosact.com/installation/index.html) for more information
79+
80+
```bash
81+
brew install act
82+
```
83+
84+
### Run the job itself
85+
86+
```bash
87+
act -j run --verbose
88+
89+
Use the verbose flag, at least the first time, since the image downloads take so long
90+
7491
### Information About Technologies
7592

7693
- Frontend

0 commit comments

Comments
 (0)