mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
586 B
Plaintext
23 lines
586 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# flutterfire
|
|
|
|
> Configure a Firebase project for your Flutter app.
|
|
> Note: Requires Firebase CLI and FlutterFire CLI to be installed.
|
|
> More information: <https://firebase.google.com/docs/flutter/setup>.
|
|
|
|
- Initialize and configure Firebase for your current Flutter app:
|
|
|
|
`flutterfire configure`
|
|
|
|
- Specify platforms (iOS, Android, web) to support:
|
|
|
|
`flutterfire configure --platforms {{ios,android,...}}`
|
|
|
|
- Use a specific Firebase project:
|
|
|
|
`flutterfire configure --project {{project_id}}`
|