Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/members-area/members-area
Website for members of non-profit community groups to manage their membership, services and subscriptions. Easily extensible with plugins.
https://github.com/members-area/members-area
Last synced: 5 days ago
JSON representation
Website for members of non-profit community groups to manage their membership, services and subscriptions. Easily extensible with plugins.
- Host: GitHub
- URL: https://github.com/members-area/members-area
- Owner: members-area
- Created: 2014-02-07T20:14:12.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-02-21T20:49:53.000Z (over 5 years ago)
- Last Synced: 2024-04-08T22:50:24.330Z (7 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 789 KB
- Stars: 9
- Watchers: 7
- Forks: 5
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - members-area/members-area - Website for members of non-profit community groups to manage their membership, services and subscriptions. Easily extensible with plugins. (others)
README
Members Area
============[![Build Status](https://travis-ci.org/members-area/members-area.png?branch=master)](https://travis-ci.org/members-area/members-area)
This is a free and open source Members Area specifically targeted at
Makerspaces/Hackspaces/Hackerspaces though also suitable for other
community groups.It's a ground-up rewrite of the original [So Make It][] Members Area.
Project status
--------------Work in progress, getting there.
Getting started
---------------Install members-area software globally:
```
npm install -g members-area
```Then create a new folder and initialise a new members are inside it:
```
mkdir myarea
cd myarea
members quickstart
```After a period of time installing the various dependencies, setting up a
SQLite database, installing the default plugins, etc the server will be
up and running on [localhost:1337](http://127.0.0.1:1337/).In future you can run the members area with `members run` or `npm start`
or, if you have installed CoffeeScript globally, `coffee index.coffee`.You'll probably want to set up a [mailgun][] (or similar) account so
Nodemailer can send the registration emails for further users you
register without them ending up in spam. Then in Core Settings, set:- From address: `Your Name `
- Service: `mailgun`
- Username: `postmaster@yourdomain`
- Password: `PasswordFromMailgun`Contributing
------------For a really fast way to get up and running with developing for the
members area, check out the [bootstrap.sh](bootstrap.sh) file - simply
download it somewhere and then run it. It runs under bash -
contributions of a Windows equivalent welcome...Once the script finishes running you'll have a folder `MembersArea`
containing a checkout of the members-area itself and a number of
plugins. There'll also be a folder called `instance` that contains a
members-area instance since the members-area itself is just a node
module and is not intended to run on it's own. You'll want to run
`./watch.sh` inside instance to monitor all the various modules for
changes.I've designed the members area to have a plugin architecture allowing
for easy expansion. In fact many of the features that could have been
core are implemented as plugins. You can easily contribute to the
ecosystem by making a plugin to expand the functionality of the members
area.I want to keep the core pretty tight, simple and reliable; improvements
to performance, security and other fixes are welcome, as are additional
plugin hooks if well thought out, but if you plan on adding more
functionality to core it may be worth having a chat first :)Bootstrap
---------We use [Bootstrap v3.3.6][], if you wish to
contribute, the documentation can be found there.[Bootstrap v3.3.6]: http://getbootstrap.com/
[So Make It]: http://www.somakeit.org.uk/
[mailgun]: https://mailgun.com