如何使用 cmd 部署 google firebase 函数?

How to deploy google firebase functions using cmd?

我的网络托管项目有问题。我在 google firebase 中创建了一个新项目,并执行了以下命令:

C:\myproject>firebase 初始化函数

C:\myproject>firebase deploy --only functions

但是网站是这样说的:

Site Not Found

Why am I seeing this?

    There are a few potential reasons:

  1. You haven't deployed an app yet.
  2. You may have deployed an empty directory.
  3. This is a custom domain, but we haven't finished setting it up yet.

How can I deploy my first app?

Refer to our hosting documentation to get started.

当用户访问我的项目时,我至少可以做些什么来展示一些文本 url?

您现在调用 Firebase CLI 的方式,它只会在您的项目中部署 Cloud Functions。它不会部署网站。事实上,按照您 运行 它的方式,它可能甚至没有创建要部署的网站。

初始化项目:

firebase init

并回答显示的问题。

如果要部署网站,请使用:

firebase deploy --only hosting

更有可能的是,您应该简单地部署所有内容以防止 运行ning 陷入此问题:

firebase deploy