Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenmueller/next-firebase
Create Next.js projects with Firebase
https://github.com/kenmueller/next-firebase
Last synced: about 2 months ago
JSON representation
Create Next.js projects with Firebase
- Host: GitHub
- URL: https://github.com/kenmueller/next-firebase
- Owner: kenmueller
- Created: 2020-05-28T07:08:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-01T01:04:45.000Z (almost 4 years ago)
- Last Synced: 2024-10-10T17:53:23.458Z (3 months ago)
- Language: JavaScript
- Size: 62.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# next-firebase
> Quickly scaffold a Next.js + Firebase app
In order to serve dynamic Next.js apps on Firebase, this includes a custom deploy script that integrates with Firebase Hosting & Firebase Functions.
## Create a project
### With Server Side Rendering
```bash
npx next-firebase [project_name] [project_id]
```### Without Server Side Rendering (only static)
```bash
npx next-firebase [project_name] [project_id] --static
```## Example
```bash
npx next-firebase my-app my-app-72e8yG
```## Dev server
```bash
npm start
```## Deploy
```bash
npm run deploy
```