Vulcan/README.md

47 lines
2 KiB
Markdown
Raw Normal View History

2012-09-20 16:03:14 +09:00
Telescope is an open-source, real-time social news site built with [Meteor](http://meteor.com)
**Note:** Telescope is beta software. Most of it should work but it's still a little unpolished and you'll probably find some bugs. Use at your own risk :)
2012-11-25 19:50:29 +09:00
# Learn More
- [Telescope Site](http://telesc.pe)
- [Telescope Demo](http://demo.telesc.pe)
2013-01-11 11:35:08 +09:00
- [Telescope Meta](http://meta.telesc.pe/) Discussions about Telescope
2012-11-25 19:50:29 +09:00
2012-12-05 11:27:02 +09:00
# License
- Telescope is distributed under the [MIT License](http://opensource.org/licenses/MIT)
# Features
- Real-time (of course!)
2012-11-25 19:50:29 +09:00
- Password-based and/or Twitter auth
- Notifications
- Mobile-ready & responsive
2012-11-25 19:50:29 +09:00
- Invite-only access for reading and/or posting
- Markdown support
- Day by day view
2012-10-19 13:39:11 +03:00
# Installation
2013-01-13 08:52:35 +09:00
- Install [Meteor](http://meteor.com)
2012-09-20 16:04:46 +09:00
- Install [Meteorite](https://github.com/oortcloud/meteorite/)
- Download or clone Telescope into /some/path
- cd /some/path
2012-09-20 16:03:14 +09:00
- Run `mrt`
2012-10-08 16:49:01 +09:00
# Running Telescope on Heroku
2012-11-25 19:50:29 +09:00
- Use the [Heroku buildpack for Meteorite](https://github.com/oortcloud/heroku-buildpack-meteorite) to push to Heroku: `heroku create --stack cedar --buildpack https://github.com/oortcloud/heroku-buildpack-meteorite.git`
- Add MongoHQ addon
# First Run
2012-11-25 19:50:29 +09:00
- Set the root URL variable used for Twitter auth (on Heroku: `heroku config:add ROOT_URL=http://your_url`)
- Fill in your Twitter keys
2012-11-25 19:50:29 +09:00
- The first user account created will automatically be made admin
2012-12-10 12:31:35 +09:00
- Check out the settings page and fill out basic things like the site's name
# Local Variables
Meteor uses local environment variables for a few things, such as configuring email. While this is straightforward to do on Heroku (see above), on a local dev environment the best way is to set up an alias for the `mrt` command.
2012-12-10 12:32:11 +09:00
For example, to configure Meteor to use Mailgun for email, in your `.bash_profile` file just add:
2012-12-10 12:31:35 +09:00
`alias m='MAIL_URL=smtp://username:password@smtp.mailgun.org:587/ mrt'`
This can also be useful for starting Meteor on a specific port:
`alias m4='MAIL_URL=smtp://username:password@smtp.mailgun.org:587/ mrt --port 4000'`