8000 docs(firebase): add firebase-app-hosting by Yuangwang Β· Pull Request #3217 Β· nitrojs/nitro Β· GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

docs(firebase): add firebase-app-hosting #3217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/2.deploy/0.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ When deploying to production using CI/CD, Nitro tries to automatically detect th
- [aws amplify](/deploy/providers/aws-amplify)
- [azure](/deploy/providers/azure)
- [cloudflare pages](/deploy/providers/cloudflare#cloudflare-pages)
- [firebase app hosting](/deploy/providers/firebase#firebase-app-hosting)
- [netlify](/deploy/providers/netlify)
- [stormkit](/deploy/providers/stormkit)
- [vercel](/deploy/providers/vercel)
Expand Down
22 changes: 10 additions & 12 deletions docs/2.deploy/20.providers/firebase.md
8000
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
# Firebase

> Deploy Nitro apps to Firebase hosting.
> Deploy Nitro apps to Firebase.

::note
You will need to be on the [**Blaze plan**](https://firebase.google.com/pricing) (Pay as you go) to get started.
::

<!--

## Firebase app hosting <sup>(beta)</sup>
## Firebase app hosting

Preset: `firebase_app_hosting`

:read-more{title="Firebase App Hosting" to="https://firebase.google.com/docs/app-hosting"}

::important
Firebase app hosting support is currently available in the Nitro [nightly release channel](/guide/nightly).
::

::tip
You can integrate with this provider using [zero configuration](/deploy/#zero-config-providers).
::
Expand All @@ -31,12 +25,16 @@ You can integrate with this provider using [zero configuration](/deploy/#zero-co
- Choose a region.
- Import a GitHub repository (you’ll need to link your GitHub account).
- Configure deployment settings (project root directory and branch), and enable automatic rollouts.
- Choose a unique ID for deployment.
4. Wait for the first release to complete.
- Choose a unique ID for your backend.
4. Click Finish & Deploy to create your first rollout.

-->
When you deploy with Firebase App Hosting, the App Hosting preset will be run automatically at build time.

## Firebase hosting
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Continuing #3215 (comment)
@pi0

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding deprecated notice seems good idea (note that current docs will soon be moved to v2.nitro.build as legacy)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added the old docs with a new deprecated note! I'm also going to reopen the old pr and copy over these changes too. That way the changes will be reflected in the new docs too

## Firebase hosting (deprecated)

::important
This deployment method is deprecated and is not recommended. Firebase App Hosting is the recommended way to deploy Nitro apps on Firebase.
::

**Preset:** `firebase`

Expand Down
0