├── LICENSE
├── README.md
├── public
└── index.html
└── static.json
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2016 Marie Chatfield
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # DEPRECATED: Call My Congress
2 |
3 | ---
4 |
5 | _Call My Congress is no longer supported._
6 |
7 | If you are attempting to access your represenatives, try:
8 |
9 | - [U.S. Senate](https://www.senate.gov/general/contact_information/senators_cfm.cfm)
10 | - [U.S. House of Representatives](https://www.house.gov/representatives/find-your-representative)
11 | - [GovTrack](https://www.govtrack.us/congress/members)
12 | - [5 Calls](https://5calls.org/)
13 |
14 | ---
15 |
16 | If you are looking for the original source code of this application, refer to the `archived` branch.
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Call My Congress is no longer supported.
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Call My Congress is no longer supported.
13 |
14 |
15 | Looking for another place to reach your representatives?
16 |
17 |
23 |
24 | Wondering why this site has been shut down?
25 |
26 | I created this website around November 2016 to help others quickly and easily call their congressional representatives. I built it over the course of a week using data made freely available by the US Census Geocoding Services, ProPublica, WhoIsMyRepresentative.com, and GovTrack.
27 |
28 | Since then, over 300,000 of you have visited this site and searched for your representatives. Thank you for participating in democracy and making your voice heard.
29 |
30 |
Unfortunately, I am no longer able to keep running Call My Congress and ensure that this website is secure, accessible, and accurate.
31 |
32 | Ensuring you are about to reach your representatives in Congress is too important to be handled by one person in her limited free time. There are so many other apps out there that are much better supported and able to help you engage with your representatives.
33 |
34 | Thank you for using Call My Congress. If you've ever written in about a bug or to let me know about your use case, I truly appreciate it. It's been an honor to hear from you and support you in this small way.
35 |
36 |
37 | —Marie Chatfield
38 | December 8, 2019
39 |
40 |
41 |
42 |
43 |
46 |
47 |
108 |
109 |
--------------------------------------------------------------------------------
/static.json:
--------------------------------------------------------------------------------
1 | {
2 | "root": "public/",
3 | "error_page": "index.html"
4 | }
--------------------------------------------------------------------------------