caruana / hypatia

Realtime Education. An open source LMS based on Facebook's React, Google's Firebase and Slack

Home Page:https://gazpachu.github.io/hypatia/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hypatia: realtime education

WARNING

The project is currently under development, with countinous changes and some bits and bobs not working. Feel free to test it if you like but don't expect it to be production-ready until mid 2017.

More info

Project's website: https://gazpachu.github.io/hypatia/

Slack group (invitation only): https://hypatialms.slack.com To request for an invitation, contact me at hello [@] joanmira {.} com

Home module

Chat module

Getting Started

npm install
  • Create a new project in your Firebase account

  • Create a file called firebase.jsx in /app/src/constants/ and add the following code with the details from the project you created:

export const firebaseConfig = {
  	apiKey: "",
    authDomain: "",
    databaseURL: "",
	storageBucket: "",
    messagingSenderId: ""
}
  • Import /data/hypatia-export.json into your Firebase database

  • Set the Firebase database rules to:

".read": "true",
".write": "auth != null"
  • Create a posts folder in Firebase storage and upload demo images with the same filename as the posts' slugs (i.e.: /posts/new-virtual-campus.jpg)

  • Set the Firebase storage rules to:

allow read: if true;
allow write: if request.auth != null;
  • Create as many groups (teams) in Slack.com as you want and add a custom integration (BOT) to each one of them

  • Create a file called slack.jsx in /app/src/constants/ with the following structure. Enter the apiToken for each BOT you created and enter the details that make more sense to your groups

export const slackGroups = [{
		name: 'Maths',
		id: 'maths',
		slug: 'MA',
		apiToken: ""
	},
	{
		name: 'English',
		id: 'english',
		slug: 'EL',
		apiToken: ""
	}						
]

Start development server with hot reloading

npm run dev

Testing

Run test once

npm run test

Test watch

npm run test:watch

Linting

Linting is using Airbnb Eslint configuration

npm run lint

Production

Build for production

npm run build

Start production server

npm run start

About

Realtime Education. An open source LMS based on Facebook's React, Google's Firebase and Slack

https://gazpachu.github.io/hypatia/


Languages

Language:JavaScript 63.7%Language:CSS 34.3%Language:HTML 2.0%