Home

Awesome

Skeduler

Event scheduler build with Firebase. See the preview here.

<details> <summary>Screenshots</summary>

Dashboard Screenshot Events Screenshot Goals Screenshot

</details>

Create your own

Prerequisites

Run on your machine

  1. Make a copy of this repository then move to that folder
npx degit daflh/skeduler skeduler
cd skeduler
  1. Login to Firebase CLI with your Google account
firebase login
  1. Set an active Firebase project for this folder
firebase use --add
  1. Go to public/js/main.js file then change the config variable with your Firebase app configuration (?)
// change this variable
const config = {
    apiKey: "YOUR_FIREBASE_API_KEY",
    authDomain: "example.firebaseapp.com",
    databaseURL: "https://example.firebaseio.com",
    projectId: "example",
    storageBucket: "example.appspot.com",
    messagingSenderId: "123456789012",
    appId: "YOUR_FIREBASE_APP_ID"
};
  1. You're done! Now you can start a local server
firebase serve

Deploy to Firebase Hosting

firebase deploy