https://github.com/spilth/where2live
An evolving collection of data to help folks choose which state to live in.
https://github.com/spilth/where2live
Last synced: 10 months ago
JSON representation
An evolving collection of data to help folks choose which state to live in.
- Host: GitHub
- URL: https://github.com/spilth/where2live
- Owner: spilth
- Created: 2024-11-26T03:58:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-13T03:11:56.000Z (over 1 year ago)
- Last Synced: 2025-07-14T04:37:29.663Z (11 months ago)
- Language: Svelte
- Homepage: https://where2live.spilth.org
- Size: 550 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Where To Live
## Getting Started
To check out the project and install required dependencies:
```bash
$ git clone git@github.com:spilth/where2live.git
$ cd where2live
$ pip install -r requirements.txt
$ npm install
```
### Processing Data
To combine the US States Shapefile with the CSV files:
```bash
$ invoke process
```
This will generates `static/states_data.geojson`
### Running the Web App Locally
To stand up the SvelteKit web app:
```bash
$ npm run dev -- --open
```
### Building the Web App Distribution
To create a production version of your app:
```bash
$ npm run build
```
### Deployment
To deploy using Netlify:
```bash
$ netlify deploy --dir=build --prod
```