怎么样新创建一个rails项目(hello),并把它启动在4000端口
rails吧
全部回复
仅看楼主
level 1
栀愿阿🍪 楼主
如题,求大神指点
2017年01月09日 11点01分 1
level 1
栀愿阿🍪 楼主
求大神帮忙啊
2017年01月09日 13点01分 2
level 6
rails new hello --skip-bundle
rails s -p 4000
2017年02月16日 23点02分 4
level 2
先要安装好所需的 环境
sudo apt install ruby
gem install rails
新建一个app
rails new hello
进入 app
cd hello
运行
rails s -p 4000
2017年11月24日 09点11分 5
level 1
rails new hello
cd hello
gem install bundle
bundle install
bundle exec rails s -p 4000 &
2017年12月31日 10点12分 6
1