├── .babelrc ├── .eslintrc ├── .gitignore ├── .jshintrc ├── .sequlizerc ├── .travis.yml ├── LICENSE ├── Procfile ├── README.md ├── config └── config.js ├── dist ├── 45832f98e0326bc6c53747b8be8d8a5c.png ├── bundle.js └── bundle.js.map ├── favicon.ico ├── img ├── CityBookLogo.png ├── CityBookLogo.sketch ├── CityBookLogo.svg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── how-it-works.png ├── how-it-works.svg ├── launcher-icon-2x.png ├── launcher-icon-3x.png ├── launcher-icon-4x.png ├── publish_to_web_button_small.png ├── publish_to_web_small-1.png ├── publish_to_web_url_small.png ├── spreadsheet.png └── step1.sketch ├── index.html ├── manifest.json ├── migrations └── 20160602032755-create-book-references.js ├── models ├── bookreferences.js └── index.js ├── package.json ├── routes ├── books.js └── index.js ├── server.js ├── src ├── App.js ├── BookList.react.js ├── ErrorBar.react.js ├── Home.react.js ├── LoadingSpinner.react.js ├── index.js ├── instructions │ ├── Footer.react.js │ ├── Header.react.js │ ├── HowItWorks.react.js │ ├── Instruction.react.js │ ├── TosModal.react.js │ └── steps │ │ ├── Step1.react.js │ │ ├── Step2.react.js │ │ ├── Step3.react.js │ │ └── Step4.react.js ├── navigation │ ├── SidebarContent.react.js │ └── TopNav.react.js ├── results │ ├── Result.react.js │ ├── ResultFilters.react.js │ ├── ResultListWrapper.react.js │ └── ResultsList.react.js └── scripts │ └── getSpreadsheetData.js ├── styles ├── instructions.scss ├── loading-spinner.scss └── styles.scss ├── sw.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/.jshintrc -------------------------------------------------------------------------------- /.sequlizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/.sequlizerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/README.md -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/config/config.js -------------------------------------------------------------------------------- /dist/45832f98e0326bc6c53747b8be8d8a5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/dist/45832f98e0326bc6c53747b8be8d8a5c.png -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/dist/bundle.js.map -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/CityBookLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/CityBookLogo.png -------------------------------------------------------------------------------- /img/CityBookLogo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/CityBookLogo.sketch -------------------------------------------------------------------------------- /img/CityBookLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/CityBookLogo.svg -------------------------------------------------------------------------------- /img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/favicon-16x16.png -------------------------------------------------------------------------------- /img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/favicon-32x32.png -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/how-it-works.png -------------------------------------------------------------------------------- /img/how-it-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/how-it-works.svg -------------------------------------------------------------------------------- /img/launcher-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/launcher-icon-2x.png -------------------------------------------------------------------------------- /img/launcher-icon-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/launcher-icon-3x.png -------------------------------------------------------------------------------- /img/launcher-icon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/launcher-icon-4x.png -------------------------------------------------------------------------------- /img/publish_to_web_button_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/publish_to_web_button_small.png -------------------------------------------------------------------------------- /img/publish_to_web_small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/publish_to_web_small-1.png -------------------------------------------------------------------------------- /img/publish_to_web_url_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/publish_to_web_url_small.png -------------------------------------------------------------------------------- /img/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/spreadsheet.png -------------------------------------------------------------------------------- /img/step1.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/img/step1.sketch -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/manifest.json -------------------------------------------------------------------------------- /migrations/20160602032755-create-book-references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/migrations/20160602032755-create-book-references.js -------------------------------------------------------------------------------- /models/bookreferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/models/bookreferences.js -------------------------------------------------------------------------------- /models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/models/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/package.json -------------------------------------------------------------------------------- /routes/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/routes/books.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/routes/index.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/server.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/App.js -------------------------------------------------------------------------------- /src/BookList.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/BookList.react.js -------------------------------------------------------------------------------- /src/ErrorBar.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/ErrorBar.react.js -------------------------------------------------------------------------------- /src/Home.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/Home.react.js -------------------------------------------------------------------------------- /src/LoadingSpinner.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/LoadingSpinner.react.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/index.js -------------------------------------------------------------------------------- /src/instructions/Footer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/Footer.react.js -------------------------------------------------------------------------------- /src/instructions/Header.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/Header.react.js -------------------------------------------------------------------------------- /src/instructions/HowItWorks.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/HowItWorks.react.js -------------------------------------------------------------------------------- /src/instructions/Instruction.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/Instruction.react.js -------------------------------------------------------------------------------- /src/instructions/TosModal.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/TosModal.react.js -------------------------------------------------------------------------------- /src/instructions/steps/Step1.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/steps/Step1.react.js -------------------------------------------------------------------------------- /src/instructions/steps/Step2.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/steps/Step2.react.js -------------------------------------------------------------------------------- /src/instructions/steps/Step3.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/steps/Step3.react.js -------------------------------------------------------------------------------- /src/instructions/steps/Step4.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/instructions/steps/Step4.react.js -------------------------------------------------------------------------------- /src/navigation/SidebarContent.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/navigation/SidebarContent.react.js -------------------------------------------------------------------------------- /src/navigation/TopNav.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/navigation/TopNav.react.js -------------------------------------------------------------------------------- /src/results/Result.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/results/Result.react.js -------------------------------------------------------------------------------- /src/results/ResultFilters.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/results/ResultFilters.react.js -------------------------------------------------------------------------------- /src/results/ResultListWrapper.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/results/ResultListWrapper.react.js -------------------------------------------------------------------------------- /src/results/ResultsList.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/results/ResultsList.react.js -------------------------------------------------------------------------------- /src/scripts/getSpreadsheetData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/src/scripts/getSpreadsheetData.js -------------------------------------------------------------------------------- /styles/instructions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/styles/instructions.scss -------------------------------------------------------------------------------- /styles/loading-spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/styles/loading-spinner.scss -------------------------------------------------------------------------------- /styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/styles/styles.scss -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/sw.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/citybook/HEAD/webpack.config.js --------------------------------------------------------------------------------