Reddit 开源入门、配置/安装

发布于 2024-09-12 20:34:42 字数 486 浏览 4 评论 0原文

学习其他开发人员的经验总是更好的。我想在我的工作场所基于内联网克隆Reddit。虽然 http://code.reddit.com/#GettingStarted 上的文档很棒,但我有之前没有开发或使用过Linux,所以对终端和Linux命令的使用不太熟悉。

我应该安装什么操作系统(Opensuse、Ubuntu)?可以在Windows上完成吗?

使用“预建虚拟机”有什么优势? (VMware)

分叉克隆有什么区别?

在安装正确的软件和配置 Reddit 方面,任何人都可以为我指出正确的方向吗?我将不胜感激任何帮助。谢谢。

It is always better to learn from other developers experiences. I would like to clone Reddit at my workplace on an intranet basis. Though the documentation is great at http://code.reddit.com/#GettingStarted , I have not developed or used Linux before, so I am not familiar with using the terminal and Linux commands.

What OS should I install (Opensuse, Ubuntu)? Can it be done on Windows?

What is the advantage in using the "Pre-built VM"? (VMware)

What is the difference between fork and clone?

Can anyone point me towards the right direction, in terms on installing the right software and configuring Reddit. I would appreciate any help. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙味迷妹 2024-09-19 20:34:42

您应该使用 Linux,Ubuntu 可以正常工作,并且它有很好的文档。它可能无法在 Windows 上完成。

如果您是 Linux 新手,请阅读 Linux 系统管理员基础知识

您可能需要设置一个 LAMP 服务器。 这是一个很好的教程

确保您也执行了此处列出的所有操作。

一旦完成,您将需要安装 git,以便您可以克隆 reddit 存储库。 (github 是一个人们发布代码的网站,而 git 是一个命令行工具,用于将代码复制到本地机器)

你可以在 Ubuntu 中安装 git 和其他东西,

sudo apt-get install git

然后你会这样做

git clone http://code.reddit.com/repo/reddit.git

,这会将所有代码放在你正在工作的任何目录中的一个文件夹中,按照你在该文件夹中的自述文件中找到的任何说明进行操作。

如果你成功了,就给自己一个大大的鼓励,然后给自己放个假。

You should use Linux, Ubuntu will work fine, and it has good documentation. It probably cannot be done on Windows.

If your new to Linux, read Linux System Administrator Basics.

You will probably have to set up a LAMP server. Here is a good tutorial.

Make sure you do everything listed here too.

Once you have that up, you will need to install git so you can clone the reddit repository. (github is a website where people post code, and git is a command line tool for copying it to your local machine)

you can install git, and other things in Ubuntu with

sudo apt-get install git

Then you would do

git clone http://code.reddit.com/repo/reddit.git

That will put all the code in a folder in whatever directory you were working in, follow whatever instructions you find in the README in that folder.

Should you succeed, give yourself a HUGE pat on the back and a vacation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文