Firebase CLI:firebase projects:create 无法创建新项目
Firebase CLI: firebase projects:create fails to create new project
使用 npm
和 运行 安装了 firebase-tools
版本 10.0.1
以下命令:
命令:
firebase projects:create
? Please specify a unique project id (warning: cannot be modified afterward) [6-30 characters]:
tour-of-heroes
? What would you like to call your project? (defaults to your project ID) Tour of Heroes
错误:
Error: Failed to create project because there is already a project with ID tour-of-heroes. Please try again with a unique project ID.
我用不同的项目 ID 和名称尝试了相同的方法,但得到了同样的错误。
如果您不能以这种方式开始新项目,我建议您直接从 Firebase 控制台创建一个项目 link:https://firebase.google.com/?gclsrc=ds&gclsrc=ds&gclid=CJOyiZ-0pPUCFUZCHQkdxlMPRA
然后进入您想要项目的文件夹并键入命令:
firebase init
然后按照说明和select“使用现有项目”
错误信息告诉你哪里出了问题:
there is already a project with ID tour-of-heroes
项目 ID 在所有 Firebase 项目中必须是全局唯一的(o 在所有用户中)并且名为 tour-of-heroes
的项目已经存在。
错误消息还告诉您该怎么做:
Please try again with a unique project ID.
建议使用控制台正是因为这将确保您的项目 ID 在所有 Firebase 项目中是唯一的。
如果您想使用 CLI,您可以使用唯一的项目 ID - 例如添加唯一的后缀(例如 tour-of-heroes-20220109
或 yousafs-tour-of-heroes
)。
使用 npm
和 运行 安装了 firebase-tools
版本 10.0.1
以下命令:
命令:
firebase projects:create
? Please specify a unique project id (warning: cannot be modified afterward) [6-30 characters]:
tour-of-heroes
? What would you like to call your project? (defaults to your project ID) Tour of Heroes
错误:
Error: Failed to create project because there is already a project with ID tour-of-heroes. Please try again with a unique project ID.
我用不同的项目 ID 和名称尝试了相同的方法,但得到了同样的错误。
如果您不能以这种方式开始新项目,我建议您直接从 Firebase 控制台创建一个项目 link:https://firebase.google.com/?gclsrc=ds&gclsrc=ds&gclid=CJOyiZ-0pPUCFUZCHQkdxlMPRA
然后进入您想要项目的文件夹并键入命令:
firebase init
然后按照说明和select“使用现有项目”
错误信息告诉你哪里出了问题:
there is already a project with ID tour-of-heroes
项目 ID 在所有 Firebase 项目中必须是全局唯一的(o 在所有用户中)并且名为 tour-of-heroes
的项目已经存在。
错误消息还告诉您该怎么做:
Please try again with a unique project ID.
建议使用控制台正是因为这将确保您的项目 ID 在所有 Firebase 项目中是唯一的。
如果您想使用 CLI,您可以使用唯一的项目 ID - 例如添加唯一的后缀(例如 tour-of-heroes-20220109
或 yousafs-tour-of-heroes
)。