Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deve-sh/fcf-deployer
A useful GUI to help you deploy your Firebase Cloud Functions when working locally. 🚀
https://github.com/deve-sh/fcf-deployer
Last synced: 5 days ago
JSON representation
A useful GUI to help you deploy your Firebase Cloud Functions when working locally. 🚀
- Host: GitHub
- URL: https://github.com/deve-sh/fcf-deployer
- Owner: deve-sh
- License: mit
- Created: 2023-09-16T07:21:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-17T10:14:00.000Z (about 1 year ago)
- Last Synced: 2023-09-17T12:47:45.304Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 442 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Firebase Cloud Functions Deployer
A useful GUI to help you list your Firebase Cloud Functions, their configurations and deploy them when working locally.
Install it to your Cloud Functions directory by:
```bash
npm i --save-dev fcf-deployer@latest
```Then run it using:
```bash
npx open-functions-deployer
```And open the URL that is shown in the terminal after running this command.
![GUI View](https://raw.githubusercontent.com/deve-sh/fcf-deployer/main/docs/images/deployer-list-view.png)
## What it can do
- Deploy Firebase Cloud Functions and view real-time deployment logs in your browser.
- Change Git branches from the UI to seamlessly run point-in-time Cloud Function deployments.
- Deploy Cloud Functions for a specific environment/project (Useful for people running multiple Firebase Cloud Functions from a single codebase - For use cases such as staging and production).![Logs View](https://raw.githubusercontent.com/deve-sh/fcf-deployer/main/docs/images/Logs%20View.PNG)
## Possible Configs
The tool supports configuration in two ways:
- Via the CLI
- Via a Config File `fcf-deployer.config.json` that can be created in the functions directory.| Property | Description | Required | Default Value |
| ------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ | ---------------- |
| functionsEntrypoint | The file that containst the exports for all your cloud functions. See below what you need to do for functions written in Typescript | No (Yes in case of TypeScript) | `./functions.js` |
| firebasercFile | The path to `./firebaserc` file if any | No | `../.firebaserc` |
| prerunScript | Script to run before the GUI is started | No | `''` |
| port | The localhost port on which to run the GUI | No | `10444` |Via the CLI:
```bash
npx open-functions-deployer -- --functionsEntrypoint=./index.js --firebasercFile=./.firebaserc
```Via the Config File:
```json
// fcf-deployer.config.json
{
"port": 3456,
"functionsEntryPoint": "./lib/index.js",
"firebasercFile": "./.firebaserc",
"prerunScript": "node scripts/prepare-functions"
}
```## FAQs
#### I'm using TypeScript, anything I need to do?
This tool automatically compiles your functions at start-time so you don't need to worry about it.
You just have to specify the path of the function's file, in most cases it would be `./lib/index.js`.
#### I need to set some environment variables or run something before I deploy my Cloud Functions. How do I do that?
So in this case you have two options:
- Use the `predeploy` config in your `firebase.json`'s `functions` property.
- Use the `prerunScript` property to specify a command that you want to run at the start time, this would ensure what you need before your Firebase Cloud Functions deploy are run.## Issues and Bugs
[![File An issue](https://img.shields.io/badge/fcf%20deployer-file%20an%20issue-orangered)](https://github.com/deve-sh/fcf-deployer/issues/new)
### Development Instructions
- You can run the server with `npm run dev:server` (Express with Server-Sent events for real-time deployment updates)
- You can run the client with `npm run dev:client` (Svelte + Vite)On production, the client is compiled to static assets and served in the home route by the backend.
When the user runs the `npx open-functions-deployer` command the compiled server file is loaded, it runs the startup script and establishes an API for the client to work with to get information about context and APIs the browser does not have access to, like whether the user is in a Git Repo, running command line operations and switching Firebase environments.