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

https://github.com/kento75/react-redux-firebase-demo

ReactとFireBaseを使用したサーバーレスなSPAの構築サンプル
https://github.com/kento75/react-redux-firebase-demo

firebase firebase-hosting firebase-realtime-database react16 redux serverless singlepageapplication

Last synced: about 2 months ago
JSON representation

ReactとFireBaseを使用したサーバーレスなSPAの構築サンプル

Awesome Lists containing this project

README

          

# React-Redux-FireBase-Demo

以下のファイルにfirebaseの各種設定を記述

```

/src/firebase/config.js

// firebase設定
export const firebaseConfig = {
apiKey: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
authDomain: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
databaseURL: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
projectId: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
storageBucket: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
messagingSenderId: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
};
```

詳細については下記を参照

[【FireBase備忘録】サーバーレスSPA作成①](https://qiita.com/Kento75/items/af8404c6ac469d8e0be1)

[【FireBase備忘録】サーバーレスSPA作成②](https://qiita.com/Kento75/items/87c2ca4093ba65304216)