withspectrum/spectrum

Name: spectrum

Owner: Spectrum

Description: Simple, powerful online communities.

Created: 2016-06-29 21:47:22.0

Updated: 2018-05-24 15:47:17.0

Pushed: 2018-05-24 16:43:36.0

Homepage: https://spectrum.chat

Size: 25392

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

[![Spectrum](./public/img/media.png)](https://spectrum.chat) ### Simple, powerful online communities.

This is the main monorepo codebase of Spectrum. Every single line of code that's not packaged into a reusable library is in this repository.

What is Spectrum?
Vision

It is difficult to grow, manage and measure the impact of online communities. Community owners need modern, chat-based communities but are running into scaling issues when their community grows beyond a few hundred members. It becomes hard to keep track of who's who, know what conversations are happening, and ensure that the community is staying healthy and productive.

Spectrum aims to be the best platform to build any kind of community online by combining the best of web 2.0 forums and real-time chat apps. With best-in-class moderation tooling, a single platform for all your communities, threaded conversations by default, community health monitoring (and much more to come), we think that we will be able to help more people start and grow the best online communities.

“[Spectrum] will take the place that Reddit used to have a long time ago for communities (especially tech) to freely share ideas and interact. Except realtime and trolling-free.”

- Guillermo Rauch (@rauchg)

Status

Spectrum has been under full-time development since March, 2017. See the roadmap for up-to-date information about our current areas of focus.

Docs
Contributing

We heartily welcome any and all contributions that match our product roadmap and engineering standards!

That being said, this codebase isn't your typical open source project because it's not a library or package with a limited scope?it's our entire product.

Ground Rules
Contributions and discussion guidelines

All conversations and communities on Spectrum agree to our underlying code of conduct. This code of conduct also applies to all conversations that happen within our contributor community here on GitHub. We expect discussions in issues and pull requests to stay positive, productive, and respectful. Remember: there are real people on the other side of that screen!

Reporting a bug or discussing a feature idea

If you found a technical bug on Spectrum or have ideas for features we should implement, the issue tracker is the best place to share your ideas. Make sure to follow the issue template and you should be golden! (click here to open a new issue)

Fixing a bug or implementing a new feature

If you find a bug on Spectrum and open a PR that fixes it we'll review it as soon as possible to ensure it matches our engineering standards. If you want to implement a new feature, open an issue first to discuss what it'd look like and to ensure it fits in our roadmap and plans for the app.

If you want to contribute but are unsure to start, we have a “good first issue” label which is applied to newcomer-friendly issues. Take a look at the full list of good first issues and pick something you like! There is also an “open” channel in the Spectrum community on Spectrum (how meta), if you run into troubles while trying to contribute that is the best place to talk to us.

Want to fix a bug or implement an agreed-upon feature? Great, jump to the local setup instructions!

Codebase
Technologies

With the ground rules out of the way, let's talk about the coarse architecture of this mono repo:

Here is a list of all the big technologies we use:

Folder structure
trum/
api        # API server
athena     # Worker server (notifications and general processing)
chronos    # Worker server (cron jobs)
docs
email-templates
hermes     # Worker server (email sending)
hyperion   # Server rendering server
mercury    # Worker server (reputation)
mobile     # Mobile apps
pluto      # Worker server (payments; syncing with Stripe)
public     # Public files used on the frontend
shared     # Shared JavaScript code
src        # Frontend SPA
vulcan     # Worker server (search indexing; syncing with Algolia)

Click to learn about the worker naming scheme

Naming Scheme

As you can see we follow a loose naming scheme based on ancient Greek, Roman, and philosophical figures that are somewhat related to what our servers do:

  • Hyperion: (/ha??p??ri?n/) is one of the twelve Titan children of Gaia and Uranus.
  • Athena (/???i?n?/) is the goddess of wisdom, craft, and war.
  • Hermes (/?h??rmi?z/) is the messenger god, moving between the worlds of the mortal and the divine.
  • Chronos (/?kro?n?s/) is the personification of Time in pre-Socratic philosophy
  • Mercury (/?m??rkj?ri/) is the patron god of financial gain, commerce, eloquence (and thus poetry), messages/communication (including divination), travelers, boundaries, luck, trickery and thieves

Code Style

We run Prettier on-commit, which means you can write code in whatever style you want and it will be automatically formatted according to the common style when you run git commit. We also have ESLint setup, although we've disabled all stylistic rules since Prettier takes care of those.

Rules
First time setup

The first step to running Spectrum locally is downloading the code by cloning the repository:

clone git@github.com:withspectrum/spectrum.git

If you get Permission denied error using ssh refer here or use https link as a fallback.

clone https://github.com/withspectrum/spectrum.git
Installation

Spectrum has four big installation steps:

  1. Install RethinkDB: See the RethinkDB documentation for instructions on installing it with your OS.
  2. Install Redis: See the Redis documentation for instructions on installing it with your OS.
  3. Install yarn: We use yarn to handle our JavaScript dependencies. (plain npm doesn't work due to our monorepo setup) See the yarn documentation for instructions on installing it.

Once you have RethinkDB, Redis and yarn installed locally its time to install the JavaScript dependencies. Because it's pretty tedious to install the dependencies for each worker individually we've created a script that goes through and runs yarn install for every worker for you: (this takes a couple minutes, so dive into the technical docs in the meantime)

 shared/install-dependencies.js

You've now finished installing everything! Let's migrate the database and you'll be ready to go :100:

Migrating the database

When you first download the code and want to run it locally you have to migrate the database and seed it with test data. First, start rethinkdb in its own terminal tab:

inkdb

Then, in a new tab, run these commands:

 run db:migrate
 run db:seed
 To empty the database (e.g. if there's faulty data) run yarn run db:drop

There's a shortcut for dropping, migrating and seeding the database too:

 run db:reset
Getting the secrets

While the app will run without any secrets set up, you won't be able to sign in locally. To get that set up, copy the provided example secrets file to the real location:

ow-secrets.example.json now-secrets.json

Note: If you're an employee at Spectrum we've got a more complete list of secrets that also lets you upload images etc. in 1Password, search for “now-secrets.json” to find it.

Now you're ready to run the app locally and sign into your local instance!

Running the app locally
Background services

Whenever you want to run Spectrum locally you have to have RethinkDB and Redis running in the background. First start rethinkdb like we did to migrate the database:

inkdb

Then (without closing the rethinkdb tab!) open another tab and start Redis:

s-server
Start the servers

Depending on what you're trying to work on you'll need to start different servers. Generally, all servers run in development mode by doing yarn run dev:<workername>, e.g. yarn run dev:hermes to start the email worker.

No matter what you're trying to do though, you'll want to have the API running, so start that in a background tab:

 run dev:api
Develop the web UI

To develop the frontend and web UI run

 run dev:web
Develop the mobile apps

To start the mobile apps run:

 run dev:mobile

And then open either the iOS simulator or the Android simulator with

 run open:ios

 run open:android

Refer to the Expo documentation on how to install the simulators.

Note: If something didn't work or you ran into troubles please submit PRs to improve this doc and keep it up to date!


License

BSD 3-Clause, see the LICENSE file.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.