fantasy eventer
1.0.0
Undelete機能を備えたシンプルなTODOアプリの例 - Create React App、React Redux、およびFireBaseで構築されています。
$ git clone https://github.com/dnbr2002/fantasy-eventer.git
$ cd fantasy-eventer
$ npm install
$ npm start // .firebaserc
{
"projects" : {
"default" : " your-project-id "
}
} // src/firebase/config.js
export const firebaseConfig = {
apiKey : 'your api key' ,
authDomain : 'your-project-id.firebaseapp.com' ,
databaseURL : 'https://your-project-id.firebaseio.com' ,
storageBucket : 'your-project-id.appspot.com'
} ; $ npm install -g firebase-tools$ npm run build
$ firebase login
$ firebase use default
$ firebase deploy| スクリプト | 説明 |
|---|---|
npm start | WebPack開発サーバーを開始 @ localhost:3000 |
npm run build | ./buildディレクトリにアプリケーションを構築します |
npm test | アプリケーションをテストします。変更に注意して再テストします |