rabblerouser / core

Pluggable, extensible membership database for community organising

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rabble Rouser Core

Build Status

Rabble Rouser core is the membership database component of the Rabble Rouser ecosystem. It provides a member sign up form and an administrative backend which allows editing of members.

To find out more about the Rabble Rouser project, check out our documentation repo.

First-time setup

  1. Install Docker:
  1. Start the Docker application.

    To verify that Docker is running:

     docker info
    
  2. Clone the project:

     git clone https://github.com/rabblerouser/core.git
    
  3. Start a Docker container to develop in (this also starts containers for dependent services):

     # For macOS and GNU+Linux:
     ./go.sh
    
     # Windows not supported yet :(
    
  4. Set up the Rabble Rouser app:

     # Install/compile the project.
     yarn
    
     # Seed the database.
     yarn seed
    
     # Run the test suite.
     yarn test
    
     # Start the app.
     yarn start
    
  5. Verify that the app works:

  6. Register a new member at http://localhost:3000

  7. Log in at http://localhost:3000/login, with superadmin@rabblerouser.team/password1234

Bonus commands

To run a single command inside the container, rather than interactive mode:

./go.sh yarn test

To watch container logs (e.g. for debugging):

# This will show all container logs, colour-coded
docker-compose logs -f

#This will show just the event-forwarder container's logs
docker-compose logs -f event-forwarder

To restart all containers with a clean slate:

docker-compose stop
docker-compose rm

To pull new versions of the docker images (e.g. kinesis, event-forwarder, etc):

docker-compose pull

If you get sick of typing docker-compose, you might want to add an alias to your .bashrc file

alias doco=docker-compose

Understanding this repository

This repository is split into these sub-directories:

  • bin: Utility scripts, mostly for build/deploy tasks
  • frontend: The frontend React.js web app
  • backend: The backend node.js API
  • e2e: End-to-end tests built with casperjs (broken right now, ignore them)

The frontend, backend, and E2E tests are all written in JavaScript, so each one has a package.json file for dependencies and tasks. There is also another package.json at the top-level of the repo, which mainly orchestrates the tasks contained within the sub-projects.

Each of these directories also has its own README file, with more instructions for how to work on its code.

Linting

We use ESLint to maintain a consistent style and detect common sources of bugs, and this is run as part of the build system. To run ESLint just do yarn lint in one of the frontend, backend, or e2e directories.

To lint just a specific file or directory:

./node_modules/.bin/eslint --ext js,jsx src/path/to/file

You can even add --fix to the end of that command to automatically fix things like whitespace errors.

If you're not sure how to fix an ESLint error, you can look up the docs for specific rules using a URL like: http://eslint.org/docs/rules/arrow-parens. In this case, arrow-parens is the name of the rule.

We're using the airbnb style (slightly modified), which encourages use of many ES6 features. If you're not up to speed on ES6, this reference may come in handy: http://es6-features.org/.

About

Pluggable, extensible membership database for community organising

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 98.4%Language:CSS 0.9%Language:HTML 0.4%Language:Shell 0.3%