/space-chess

Space themed online game

Primary LanguageTypeScript

Space Chess

This space themed chess game can be played online with friends. Frontend is done with TypeScript and React. Backend uses Firebase's Firestore and Cloud Functions with TypeScript. Backend repo is here

Play game here 🚀👽

screen shot 2018-05-28 at 23 30 08

Running locally

  1. Add src/env.ts file with your Firebase config like this:
export default {
  firebase: {
    apiKey: "xxx",
    authDomain: "xxx",
    databaseURL: "xxx",
    messagingSenderId: "xxx",
    projectId: "xxx",
    storageBucket: "xxx",
  }
}
  1. Install dependencies with yarn
  2. Start local dev environment with npm start