TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Teleport - opinionated server setup with Ruby

24 pointsby gurgeousalmost 14 years ago

4 comments

gurgeousalmost 14 years ago
I am the author. Teleport sets up servers by "teleporting" to the machine and running itself there. It sets up Ruby, then follows the instructions laid out in your Telfile to customize the server. Here's a sample Telfile:<p><pre><code> user "admin" ruby "1.9.2" apt "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen", :key =&#62; "7F0CAB10" role :app, :packages =&#62; [:memcached] role :db, :packages =&#62; [:mongodb-10gen] server "server_app1", :role =&#62; :app server "server_db1", :role =&#62; :db packages [:atop, :emacs, :gcc] </code></pre> More details on github. Feedback welcome!
johnny99almost 14 years ago
I'm using an early version of this for a project, and it works a charm. If you work within its (sensible) constraints, it accomplishes much the same thing as Chef, with less effort and less overhead.
mikeboalmost 14 years ago
This looks awesome. Going to try it out... Chef solo is painful.
sarahnovotnyalmost 14 years ago
interesting. will have to look at this compared to chef.