chihacknight / chicago-elections-archive

Explore precinct-level results from historical Chicago elections
https://chicago-election-archive.netlify.app
MIT License
0 stars 0 forks source link

Decouple data deployment and code deployment #3

Closed yashBhosale closed 1 month ago

yashBhosale commented 2 months ago

Right now the way the data is managed is that it's generated through a script and then uploaded in the make process. That's less than ideal for several reasons:

Also this data is (afaik) largely static - it should really ever be changing barring corrections, so there's no need to build/deploy it every time we're deploying the code.

derekeder commented 1 month ago

in #4 we excluded the make all command from the docker build and up processes. to rebuild the data, the make all command must be run separately. does this satisfy closing this issue?

yashBhosale commented 1 month ago

Yeah