Can not see the Firebase function deployed

后端 未结 15 1155
失恋的感觉
失恋的感觉 2021-02-02 08:23

I followed the following steps:

  1. The Firebase CLI (Command Line Interface) requires Node.js and npm, which you can install by following the instructions on https

15条回答
  •  没有蜡笔的小新
    2021-02-02 09:10

    Use firebase projects:list and firebase use to make sure the Firebase CLI's "current project" is set correctly regardless of what folder you're in.

    Example:

    > firebase projects:list
      ✔ Preparing the list of your Firebase projects
      ┌──────────────────────┬─────────────────────┬──────────────────────┐
      │ Project Display Name │ Project ID          │ Resource Location ID │
      ├──────────────────────┼─────────────────────┼──────────────────────┤
      │ alpha                │ alpha     (current) │ [Not specified]      │
      ├──────────────────────┼─────────────────────┼──────────────────────┤
      │ beta                 │ beta                │ [Not specified]      │
      └──────────────────────┴─────────────────────┴──────────────────────┘
    
      2 project(s) total.
    
    > firebase use beta
      Now using project beta
    

提交回复
热议问题