Main site for Finals Club Services http://finalsclub.org (mirror)

Seth Woodworth 74b79f131e Checking in changes made in-place on the server to be merged 12 سال پیش
bc @ 3ee3af3ffc e453cf5167 Modifying app.js and git so bc lives in the FC directory 13 سال پیش
emails 7d348a43da migrating monitor and backup scripts from sleepless/fc => FinalsClub repo 13 سال پیش
etherpad-lite @ 9534f9f1a1 6b78a2560a Add epl submodule back in 13 سال پیش
fcbackups 7d348a43da migrating monitor and backup scripts from sleepless/fc => FinalsClub repo 13 سال پیش
public 74b79f131e Checking in changes made in-place on the server to be merged 12 سال پیش
util 981d956dd6 Merge branch 'master' of github.com:finalsclubdev/FinalsClub 13 سال پیش
views 74b79f131e Checking in changes made in-place on the server to be merged 12 سال پیش
.gitignore 990f3aa309 reorganized assets, completed new header 13 سال پیش
.gitmodules 9342412a38 updating EPL to Pita's latest and other updates 13 سال پیش
.vimrc b95fae049b minor cleaning on lectures page and lecture page, fixed links on home page 13 سال پیش
COPYING dca1eede5e Added GPLv3 License to source code 13 سال پیش
README.md cc1307f9cd Changed setup.sh to include whole process and start will start the server from home 13 سال پیش
app.js 74b79f131e Checking in changes made in-place on the server to be merged 12 سال پیش
db.js b15c7aa4e6 Inital Commit 13 سال پیش
fc_monitor_epl.js 242f71b708 updating script permissions 13 سال پیش
h 6039329412 1page updates 13 سال پیش
log.js b15c7aa4e6 Inital Commit 13 سال پیش
mailer.js b15c7aa4e6 Inital Commit 13 سال پیش
models.js b231ed8f6d modify schools to have a 'slug' name value 13 سال پیش
package.json b2e350b15c adding jade to requreiments 13 سال پیش
restart b15c7aa4e6 Inital Commit 13 سال پیش
schools.json b15c7aa4e6 Inital Commit 13 سال پیش
setup.sh b1d9ac15de Removed mongodb-2.0.2 from setup.sh 13 سال پیش
start 74b79f131e Checking in changes made in-place on the server to be merged 12 سال پیش
stop 5d33f2fb4e updated start/stop scripts to run form /etc/rc.local (without sudo) 13 سال پیش

README.md

Finals Club (FC)

This is the source code repository for finalsclub.org.

FC is a 501(c)(3) non-profit open education project dedicated to helping college students collaborate, learn, and share their knowledge freely online.

Additional resources

[[ discussion groups, chat rooms, etc. related to FC and FC sources ]]

Quick install

Requirements:

  • Debian/ubuntu-server GNU/Linux Box with a modern kernel (2.6.39 <)
  • 1 GB (idealy) 512MB min.
  • Node.js (Version 0.6.1 or later) More ...
  • MongoDB (Version 2.0.2 or later) More ...
  • forever

Deployment:

  1. Copy setup.sh to home directory.

  2. REVIEW setup.sh BEFORE RUNNING!!!!

  3. run: sudo setup.sh

  4. mongorestore any back-up databases that you may have.

  5. Copy "start" to home directory and run.

System components

The system consists of these main parts:

  • The website
  • The collaborative, real-time editor
  • The back channel

Most of the system is written in Javascript and executed by the Node.js runtime.

Source Code

The Collaborative Real-time Editor

The editor is an embedded editor called Etherpad-Lite (EPL). It provides the ability for multiple people to simultaneously edit a single document. The documents in FC are the notes for a specific lecture.

EPL is installed as a git submodule to the main FC source tree with the name "etherpad-lite".

The Back Channel (BC)

The back channel portion of FC is implemented with "BC". BC allows the note takers, or anyone else who is just observing, to suggest questions for the lecturer, and vote on each other's questions. It also allows people to post commentary.

Although the actual BC code was written for FC, it has been extracted from the original FC source and turned into an independent open source project.

BC is installed as a git submodule to the main FC source tree with the name "bc".

The Surrounding Website

This is the FC website, which brings together the other two elements into a single website that serves it's stated purpose (above). This would be the home page, privacy policy page, the page that lists the participating schools, the sub pages containing lists of lectures and note taking sessions, and the core page where EPL and BC are both found along side each other.

Several node modules are leveraged to to make the basic website work:

[[ more detail about website generally, then defer to src comments ]]

Database

The database is MongoDB. MongoDB is not a relational database, but rather a noSQL or "document/object" database. Data is stored as structured objects versus tables and rows. (More about MongoDB)[http://mongodb.org].

Collections in the database

  • archivedcourses [[ schema needed ]]
  • archivednotes [[ schema needed ]]
  • archivedsubjects [[ schema needed ]]
  • courses [[ schema needed ]]
  • lectures [[ schema needed ]]
  • notes [[ schema needed ]]
  • posts [[ schema needed ]]
  • schools [[ schema needed ]]
  • sessions [[ schema needed ]]
  • users [[ schema needed ]]

[[ stuff ]]

[[ notes about scaling/replication/etc. ]]

AWS Infrastructure

The actual finalsclub.org servers run in the cloud on Linux servers, using Amazon Web Services (AWS). Scaling is accomplished by adding additional servers to a load balancer.

NOTE: The scaling system is automatic; new servers have to be added manually, but it it's very easy. NOTE: Automatic fail-over of the database is not yet in place.

NOTE: There are currently 2 running server instances. One for the live server and one for testing.

Data is stored in a MongoDB server running on the same AWS instance as the website. Data is backed up daily to the durable AWS S3 system. One backup of the database is kept for the most recent 30 days, one for each of the most recent 12 months, and one for every year.

AWS Cloudwatch is used to monitor the servers. When the configured conditions warrant attention, notices are sent to "info@finalsclub.org".

NOTE: There are currently 2 monitors set up:

  • available disk space
  • CPU utilization

NOTE: We still have an ongoing issue with the EPL server hanging up. This is being worked on.