Compare commits

..

No commits in common. "7eb3ef7ce43ed253d1ae02861e4ad32590a011e6" and "eca90c6a5a73f6100cec337bc91c1160de56be4c" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View file

@ -11,7 +11,3 @@ See [the instructions](docs.md) for installing on a server.
## Testing ## Testing
There isn't a test suite, but you can use the `curl_test.sh` script to manually test that your app is working correctly. There isn't a test suite, but you can use the `curl_test.sh` script to manually test that your app is working correctly.
## Notes for Hugh
Remember that you adjusted this on the server to run `process.js` to merge csv changes into the topojson file!

View file

@ -51,8 +51,7 @@ async function gitPull(local_repo, res) {
app.post(`/${process.env.APP_PATH}`, (req, res) => { app.post(`/${process.env.APP_PATH}`, (req, res) => {
const hmac = createHmac('sha256', process.env.SECRET) const hmac = createHmac('sha256', process.env.SECRET)
const local_repo = process.env.LOCAL_REPO const local_repo = process.env.LOCAL_REPO
// Use spacing of 2 for Forgejo, or none for GitHub hmac.update(JSON.stringify(req.body))
hmac.update(JSON.stringify(req.body, null, 2))
// check has signature header and the decrypted signature matches // check has signature header and the decrypted signature matches
if (req.get('X-Hub-Signature-256')) { if (req.get('X-Hub-Signature-256')) {