├── .github └── workflows │ └── update-locations.yml ├── .gitignore ├── README.md ├── application.js ├── index.html ├── locate_restaurants.py ├── locations.json ├── poetry.lock └── pyproject.toml /.github/workflows/update-locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/.github/workflows/update-locations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/README.md -------------------------------------------------------------------------------- /application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/application.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/index.html -------------------------------------------------------------------------------- /locate_restaurants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/locate_restaurants.py -------------------------------------------------------------------------------- /locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/locations.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileswwatkins/cowen_current_favorites/HEAD/pyproject.toml --------------------------------------------------------------------------------