项目作者: 064xp

项目描述 :
Share ideas in short messages with space travel. React Redux and Firebase
高级语言: JavaScript
项目地址: git://github.com/064xp/helion.git
创建时间: 2019-03-28T22:24:48Z
项目社区:https://github.com/064xp/helion

开源协议:

下载


Helion :rocket:

Send your thoughts and ideas away on a capsule to traverse the universe and arrive upon a stranger.

See what its all about

This app is made with React, Redux and Firebase Firestore as a backend/database.

:computer: Run Locally

In a terminal run:

To clone git repo

git clone https://github.com/064xp/helion/

cd helion

Install node modules

npm install

To start development server

npm start

:fire: Firebase Config

A firebaseConfig.js file in the root of your project is required where you firebase configuration is exported

  1. //firebaseConfig.js
  2. const config = {
  3. apiKey: "<API_KEY>",
  4. authDomain: "<PROJECT_ID>.firebaseapp.com",
  5. databaseURL: "https://<DATABASE_NAME>.firebaseio.com",
  6. projectId: "<PROJECT_ID>",
  7. storageBucket: "<BUCKET>.appspot.com",
  8. messagingSenderId: "<SENDER_ID>"
  9. };
  10. export default config;

Firebase Firestore Structure

  1. ── floaters
  2. └── [docId]
  3. ├── author
  4. └── "064xp"
  5. ├── content
  6. └── "Hello world"
  7. └── time
  8. └── "1556682311385"