spot-us / spot-us
- Source
- Commits
- Network (23)
- Issues (2)
- Downloads (0)
- Wiki (3)
- Graphs
-
Tree:
594ab4b
tree 21453946ed3bf507d2efd71dc46bdd391476c538
parent 016fe7f5b06bb77e9b699d405d339b4d3b3502fd
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
CHANGELOG.textile | Tue Sep 16 09:07:02 -0700 2008 | |
| |
Capfile | Tue Sep 16 08:49:15 -0700 2008 | |
| |
README.textile | Fri Apr 17 12:21:50 -0700 2009 | |
| |
Rakefile | Tue Sep 15 19:04:54 -0700 2009 | |
| |
app/ | ||
| |
config/ | ||
| |
db/ | Tue Oct 27 10:14:55 -0700 2009 | |
| |
doc/ | Mon Sep 22 11:50:22 -0700 2008 | |
| |
features/ | Mon Apr 20 14:37:36 -0700 2009 | |
| |
lib/ | Tue Oct 20 16:52:32 -0700 2009 | |
| |
log/ | Sun Apr 05 20:47:35 -0700 2009 | |
| |
public/ | ||
| |
script/ | Mon Apr 13 14:47:07 -0700 2009 | |
| |
spec/ | Fri Oct 23 07:20:39 -0700 2009 | |
| |
stories/ | Tue Sep 16 08:49:15 -0700 2008 | |
| |
tmp/ | Sun Apr 05 20:47:35 -0700 2009 | |
| |
vendor/ | Tue Oct 20 16:52:32 -0700 2009 |
Spot.Us
Community Funded Reporting
“Spot Us” is a project of the nonprofit Center for Media
Change that allows an individual or group to take control of
news by sharing the cost (crowdfunding) to commission freelance
journalists. Spot.Us is made possible by the Knight
Foundation. Read more.
Spot.Us won’t be ready until the Fall – but we’ve received lots of interest. So we’ve
launched a wiki to capture ideas and test the concept of
“community funded reporting” in Northern California’s Bay Area.
We are looking to partner with news organizations, freelance journalists and civic leaders in the
Bay Area. Don’t hesitate to contact us.
How does Spot.Us work?
- An individual or journalist creates a pitch that outlines an untold story in a local community.
- Members of your community vote, with their money, on what stories are most important to them.
- A journalist researches the facts and puts together an article. Editors provide check-and-balance
on the story. - Spot.Us publishes the story in its news feeds and works with local media outlets to have the
articles published more widely.
Setting Up Spot.Us
setup configuration files – make any necessary edits to these if the defaults don’t work for you. Spot.Us is dependent on MySQL because it uses the rand() function.
- cp config/database.example.yml config/database.yml
- cp config/newrelic.example.yml config/newrelic.yml
- cp config/settings.example.yml config/settings.yml
run basic setup tasks
- rake db:create:all
- rake db:migrate
setup your local domains
Spot.Us relies on subdomain_fu to route requests to various networks. To use the site locally, you’ll need to add these entries to your /etc/hosts file. spotus.local will become the main Spot.Us site. Any subdomains you create will need to be added to the file also (in this example, we’ve added an sfbay network).
- sudo $EDITOR /etc/hosts
- Add these lines:
- 127.0.0.1 spotus.local
- 127.0.0.1 sfbay.spotus.local
start your local server
- ./script/server
Spot.Us should now be running on your computer at the URL http://spotus.local:3000

