rails s 命令不起作用

[email protected]:/var/www/ashelf$ RAILS_ENV=production rails s
Usage:
rails new APP_PATH [options]

Options:
-r, [--ruby=PATH] # Path to the Ruby binary of your choice
# Default: /home/diudiugirl/.rvm/rubies/ruby-2.3.0/bin/ruby
-b, [--builder=BUILDER] # Path to a application builder (can be a filesystem path or URL)
-m, [--template=TEMPLATE] # Path to an application template (can be a filesystem path or URL)
[--skip-gemfile], [--no-skip-gemfile] # Don‘t create a Gemfile
[--skip-bundle], [--no-skip-bundle] # Don‘t run bundle install
-G, [--skip-git], [--no-skip-git] # Skip Git ignores and keeps
-O, [--skip-active-record], [--no-skip-active-record] # Skip Active Record files
-S, [--skip-sprockets], [--no-skip-sprockets] # Skip Sprockets files
-d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc)
# Default: sqlite3
-j, [--javascript=JAVASCRIPT] # Preconfigure for selected JavaScript library
# Default: jquery
-J, [--skip-javascript], [--no-skip-javascript] # Skip JavaScript files
[--dev], [--no-dev] # Setup the application with Gemfile pointing to your Rails checkout
[--edge], [--no-edge] # Setup the application with Gemfile pointing to Rails repository
-T, [--skip-test-unit], [--no-skip-test-unit] # Skip Test::Unit files
[--old-style-hash], [--no-old-style-hash] # Force using old style hash (:foo => ‘bar‘) on Ruby >= 1.9

Runtime options:
-f, [--force] # Overwrite files that already exist
-p, [--pretend], [--no-pretend] # Run but do not make any changes
-q, [--quiet], [--no-quiet] # Suppress status output
-s, [--skip], [--no-skip] # Skip files that already exist

Rails options:
-h, [--help], [--no-help] # Show this help message and quit
-v, [--version], [--no-version] # Show Rails version number and quit

Description:
The ‘rails new‘ command creates a new Rails application with a default
directory structure and configuration at the path you specify.

You can specify extra command-line arguments to be used every time
‘rails new‘ runs in the .railsrc configuration file in your home directory.

Note that the arguments specified in the .railsrc file don‘t affect the
defaults values shown above in this help message.

Example:
rails new ~/Code/Ruby/weblog

This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
See the README in the newly created application to get going.

原因:缺少script文件夹或文件夹中缺少rails文件

时间: 2024-11-09 08:32:02

rails s 命令不起作用的相关文章

一些命令的参数作用

man文档有时候看的不太懂,这里就记录一些命令的参数作用,以备查询之用. ls [-aAdfFhilnrRst] ls[--color={never,auto,always}] ls[--full-time] -a  : 全部的文件,连同隐藏文件(开头为 . 的文件)一起列出来(常用) -A : 列出全部的文件,(连同隐藏文件,但不包括 . 与 ..这两个目录 -d : 仅列出目录本身,而不是列出目录内的文件数据(常用) -f : 直接列出结果,而不进行排序(ls默认会以文件名排序) -F :

找不到rails console命令

部署新服务器之后发现,服务器上没有console命令了 [email protected]:/home/ubuntu/campo/current# bundle exec rails c Usage: rails new APP_PATH [options] Options: -r, [--ruby=PATH] # Path to the Ruby binary of your choice # Default: /usr/local/rvm/rubies/ruby-2.0.0-p643/bin

[常见问题]在Linux下执行Redis命令不起作用.

redis 127.0.0.1:6379> 这个后面无论输入什么命令都没有返回 ok 或者其他的信息,一直保持截图的状态: 解决方法:在SecureCRT中设置Options-->SessionOptions 然后剩下的按照截图来配置: 

ruby on rails常用命令mark

1. RAILS_ENV=production rails s启动服务器 2. RAILS_ENV=production rails generate controller ProductionArray 3. RAILS_ENV=production rails generate migrations CreateProductionArray 4. RAILS_ENV=production rake db:migrate version=201602062117 5. RAILS_ENV=p

ping命令不同参数作用及测试结果

1. ping www.edu.cn 默认发送四个ICMP回送请求(应答)报文 2. ping -t www.edu.cn 持续发送数据包 Ctrl-C 停止  3. ping -l 500 www.edu.cn 发送缓冲区大小,size,500字节 4. ping -n 10 www.edu.cn -n count 要发送的回显请求数 5.ping 原文地址:https://www.cnblogs.com/shiyu1/p/12576485.html

ruby on rails 命令行下看效果

前几天学习rails的时候用的是IDE开发,没感觉出来rails的效率到底有多快.今天我使用命令行试了下,结果我惊呆了,在没有写一行代码的情况下,居然完成了一个简单的增删改查的模型. 如下: 首先是配置环境我这里就不罗嗦了. 执行命令:rails new blog 创建一个文件名为blog的mvc的项目结构. rake db:create 创建数据库(这里就先直接用下sqllite) rails generate controller home index 创建名称为home的controlle

开始了大概三四天的Rails学习之路

最近因为一位极光推送朋友,我开始了大概三四天的Rails学习之路,最终达到的水平是可以比较轻松地做出大部分功能,然后自我感觉可以自如地按照Rails的设计思想去思考.由于编程的日益流行,我结识了越来越多非计算机系的学生出于爱好开始写代码,但是其中的大部分人也许在用着一些错误的学习方式来学习编程,为了避免大家再继续走弯路,在这篇文章中,我会介绍下一个初学者要如何学习Rails. 1. 为何而学,目标是什么? 今天和朋友在走路时,谈到要如何学习Rails,我问的第一个问题是,你为什么要学习Rails

iptables(2)命令

iptables命令 iptables [-t table] {-A|-D} chainrule-specification iptables [-t table] -I chain [rulenum]rule-specification iptables [-t table] -R chain rulenumrule-specification iptables [-t table] -D chain rulenum iptables [-t table] -S [chain [rulenum

HDFS中的命令行

HDFS中的命令行 本文介绍了HDFS以命令行执行的时候.几个经常使用的命令行的作用和怎样使用~ 1. fs fs是启动命令行动作,该命令用于提供一系列子命令. 使用形式为hadoop fs –cmd <args> 当中,cmd是子命令,args是详细的命令操作. 比如hadoop fs –help 或者说fs是其余子命令的父亲.其余都是在"-cmd"的模式下的! 2. –cat 输出 hadoop fs –cat URI 将路径指定的文件输出到屏幕 3. –copyFro