My current project is located in the Projects/project1 directory. I'd like to have it located in Projects/project2. Do just reinstall Rails into that directory?
だけrails new
を実行して、そのディレクトリに新規のRailsプロジェクトを作成します。
$ cd Projects
$ rails new project2
あなたはのProject2に新しい(空の)Railsアプリケーションを持っています。
I still need access to project1. How do I switch back and forth between the two projects in terms of browser access? Will it be a separate server? Do I have to edit a file to switch?
あなたはrails server
を介してローカルサーバを実行していると仮定すると、あなたのサーバが-p
経由で実行されているポートを指定することができます。 Railsのプロジェクトを考えると
、あなたは彼らがすべてのユニークなポートで実行していることを確認し、ローカルで複数のRailsプロジェクトを実行するには
$ ./script/rails server -p 3001
を実行することにより、localhost:3001
に聞くことができます。
Anything else you think I might need to know in order to manage multiple projects. Please assume that I know nothing about the setup as I'm just getting started.
ご使用のプラットフォームに応じて、Powまたは単一のサーバーに複数のRailsアプリケーションを展開するプロセスを自動化Passengerになっているはずです。
私は新しいプロジェクトをうまくインストールできましたが、ポートの指示に問題があります。 '$ ./script/rails server -p 3001'を実行すると、エラーが表示されます: 'autodetect ':JavaScriptランタイムが見つかりませんでした。何か案は? – VirtuosiMedia
これは無関係の問題です。あなたは解決のためにgoogleするか、[別の質問をする](http://stackoverflow.com/questions/ask)のどちらかを選択します。 – meagar
私はいくつかの追加の宝石をインストールする必要がありました。助けてくれてありがとう。 – VirtuosiMedia