WindowsのLocalHostにDiscourseをインストールする方法

ローカルマシンにDiscourseをインストールしたいと考えています。OSはWindows 8です。ローカルホストへのDiscourseのインストールについてご教示ください。

すでにローカルにWebサイトをインストール済みで、今度はDiscourseをインストールしたいと考えています。

helicalinsight.com(これが私のWebサイトです)にDiscourseフォーラムを配置しており、
forum.helicalinsight.com
というURLでアクセスできます。

次に、forum.localhostという形でローカルホスト上でフォーラムを動かしたいのですが、これは可能でしょうか?

Railsアプリケーションに関する知識は皆無です(こちらのガイドも試しましたが、役に立ちませんでした:https://blog.discourse.org/2013/04/discourse-as-your-first-rails-app/)。

よろしくお願いいたします。

「いいね!」 1

Have a look at Beginners Guide to Install Discourse on Windows 10 for Development for details about setting up a dev environment on Windows. You will need to upgrade from Windows 8. An alternative would be to install Linux on your computer and then follow Beginners Guide to Install Discourse on Ubuntu for Development.

「いいね!」 7

[command line instructions ahead…]

Vagrant, a virtual machine manager written in Ruby, is an option for Windows 8; it provides a WSL-like environment (Windows Subsystem for Linux, a Windows 10 feature).

Vagrant can use Docker, Hyper-V or VirtualBox as a virtual machine provider, in case you already have one of those installed. If not, the easiest tool to use for setup is Chocolatey; once Chocolatey is installed, the command choco install -y virtualbox vagrant will install both Vagrant and VirtualBox.

From there, follow the Vagrant Project Setup guide to install an Ubuntu VM, e.g. vagrant init hashicorp/bionic64 (or bionic32 if your Windows 8 install is 32-bit).

Beginners Guide to Install Discourse on Windows 10 for Development should be usable from there (I hope).

「いいね!」 3

Note. Vagrant is not supported at all, you would use either a VM or WSL2 which is probably the easiest.

「いいね!」 8

Vagrant is just a VM manager, for VMs provided by Microsoft’s Hyper-V, or VirtualBox, or VMware (more involved setup, but possible to use). In that sense, Vagrant is a lot like WSL2 which just provides a specialized Hyper-V VM with some additional Microsoft-sanctioned Windows/Linux integration.

「いいね!」 1

I may be mistaken but the expectation with vagrant would be that we maintain config for it and publish an image. These are 2 things that are not on the table.

For a very low touch setup that allows you to go from 0 - 100 very quickly use WSL2 + Docker dev

Beginners Guide to Install Discourse for Development using Docker

「いいね!」 4

Forgot this thread was left dangling. Vagrant is just a dev tool (a VM manager) that doesn’t strictly need a config file to be useful, and certainly not a dedicated image (it’ll quickly bring up a VM capable of hosting Docker & running Discourse scrips like discourse-setup & launcher just fine).

There’s already a Vagrantfile at discourse_docker/blob/master/Vagrantfile
and simple instructions at the end of discourse_docker/blob/master/README.md for hacking on discourse_docker.