Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/go/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Go Buffalo:ERRO[0000]错误:不允许使用名称buffalodevn,请尝试其他应用程序名称_Go_Buffalo - Fatal编程技术网

Go Buffalo:ERRO[0000]错误:不允许使用名称buffalodevn,请尝试其他应用程序名称

Go Buffalo:ERRO[0000]错误:不允许使用名称buffalodevn,请尝试其他应用程序名称,go,buffalo,Go,Buffalo,当尝试在我的Go Path中启动一个新的buffalo项目时,我得到了这个错误,在我的搜索中,我在不同论坛的文档或其他问题中没有看到任何关于这个错误的引用。我尝试了不同形式的不同名称,但我总是得到相同的错误,我不知道为什么。(没有水牛的名字) 当我运行Buffalo信息时 -> Go: Checking installation ✓ The `go` executable was found on your system at: /usr/local/go/bin/go -> Go

当尝试在我的Go Path中启动一个新的buffalo项目时,我得到了这个错误,在我的搜索中,我在不同论坛的文档或其他问题中没有看到任何关于这个错误的引用。我尝试了不同形式的不同名称,但我总是得到相同的错误,我不知道为什么。(没有水牛的名字)

当我运行Buffalo信息时

-> Go: Checking installation
✓ The `go` executable was found on your system at: /usr/local/go/bin/go

-> Go: Checking minimum version requirements
✓ Your version of Go, 1.13.4, meets the minimum requirements.

-> Go: Checking GOPATH
✓ You are using Go Modules, so no need to worry about the GOPATH.

-> Go: Checking Package Management
✓ You are using Go Modules (`go`) for package management.

-> Go: Checking PATH
✓ Your PATH contains /home/alexmerced/go/bin.

-> Node: Checking installation
✓ The `node` executable was found on your system at: /usr/bin/node

-> Node: Checking minimum version requirements
✓ Your version of Node, v12.13.1, meets the minimum requirements.

-> NPM: Checking installation
✓ The `npm` executable was found on your system at: /usr/bin/npm

-> NPM: Checking minimum version requirements
✓ Your version of NPM, 6.13.4, meets the minimum requirements.

-> Yarn: Checking installation
✘ The `yarnpkg` executable could not be found on your system.
For help setting up your Yarn environment please follow the instructions for you platform at:

https://yarnpkg.com/en/docs/install

-> PostgreSQL: Checking installation
✘ The `postgres` executable could not be found on your system.
For help setting up your Postgres environment please follow the instructions for you platform at:

https://www.postgresql.org/download/

-> MySQL: Checking installation
✘ The `mysql` executable could not be found on your system.
For help setting up your MySQL environment please follow the instructions for you platform at:

https://www.mysql.com/downloads/

-> SQLite3: Checking installation
✓ The `sqlite3` executable was found on your system at: /usr/bin/sqlite3

-> SQLite3: Checking minimum version requirements
✓ Your version of SQLite3, 3.29.0, meets the minimum requirements.

-> Cockroach: Checking installation
✘ The `cockroach` executable could not be found on your system.
For help setting up your Cockroach environment please follow the instructions for you platform at:

https://www.cockroachlabs.com/docs/stable/

-> Buffalo (CLI): Checking installation
✓ The `buffalo` executable was found on your system at: /usr/local/bin/buffalo

-> Buffalo (CLI): Checking minimum version requirements
✓ Your version of Buffalo (CLI), v0.15.3, meets the minimum requirements.

-> Buffalo: Application Details
Pwd         /home/alexmerced
Root        /home/alexmerced
GoPath      /home/alexmerced/go
PackagePkg  alexmerced
ActionsPkg  alexmerced/actions
ModelsPkg   alexmerced/models
GriftsPkg   alexmerced/grifts
WithModules true
Name        alexmerced
Bin         bin/alexmerced
VCS         
WithPop     false
WithSQLite  false
WithDep     false
WithWebpack false
WithNodeJs  false
WithYarn    false
WithDocker  false
WithGrifts  false
AsWeb       true
AsAPI       false
InApp       false
PackageJSON {map[]}

我发现了你的问题,因为我有同样的问题,并寻找解决方案。。。然后我查看了一下来源,发现:

fb := append(opts.ForbiddenNames, "buffalo", "test", "dev")

因此,名称似乎不允许包含“buffalo”、“test”或“dev”。

我找到了您的问题,因为我遇到了相同的问题,并搜索了解决方案。。。然后我查看了一下来源,发现:

fb := append(opts.ForbiddenNames, "buffalo", "test", "dev")

因此,名称中似乎不允许包含“buffalo”、“test”或“dev”。

谢谢。我也有同样的问题,这很奇怪,但看起来你无法创建项目“测试项目”是的,我失败的尝试是测试网站。。。(:我在网上找不到信息,只有来源提供了答案。这太愚蠢了。我想创建一个名为
developer\u console
的项目,这是不允许的。嘿,谢谢。我也有同样的问题,这很奇怪,但看起来你无法创建项目“test\u project”是的,我失败的尝试是test\u站点。。。(:我在网上找不到信息,只有来源提供了答案。这太愚蠢了。我想创建一个名为
developer\u console
的项目,这是不允许的。嘿