Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```