TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Teleport - opinionated server setup with Ruby

24 点作者 gurgeous将近 14 年前

4 条评论

gurgeous将近 14 年前
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!
johnny99将近 14 年前
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.
mikebo将近 14 年前
This looks awesome. Going to try it out... Chef solo is painful.
sarahnovotny将近 14 年前
interesting. will have to look at this compared to chef.