Spoke is an open source text-distribution tool for organizations to mobilize supporters and members into action. Spoke allows you to upload phone numbers, customize scripts and assign volunteers to communicate with supporters while allowing organizations to manage the process.
Spoke was created by Saikat Chakrabarti and Sheena Pakanati, and is now maintained by MoveOn.org.
The latest version is 1.3.0 (see release notes) which we recommend for production use, while our main
branch is where features still in development and testing will be available.
This is generated from react-apollo-starter-kit. Look at that project's README for info on some of the libraries used.
Follow up instructions located here
Please let us know if you deployed by filling out this form here
- Install either sqlite (or another knex-supported database)
- Install the Node version listed under
engines
inpackage.json
. NVM is one way to do this. npm install
npm install -g foreman
cp .env.example .env
- If you want to use Postgres:
- In
.env
setDB_TYPE=pg
. (Otherwise, you will use sqlite.) - Set
DB_PORT=5432
, which is the default port for Postgres. - Create the spokedev database:
psql -c "create database spokedev;"
- In
- Create an Auth0 account. In your Auth0 account, go to Settings -> Clients -> and then grab your Client ID, Client Secret, and your Auth0 domain (should look like xxx.auth0.com). Add those inside your
.env
file (AUTH0_CLIENT_ID, AUTH0_CLIENT_SECRET, AUTH0_DOMAIN respectively). - Run
npm run dev
to create and populate the tables. - In your Auth0 app settings, add
http://localhost:3000/login-callback
,http://localhost:3000
andhttp://localhost:3000/logout-callback
to "Allowed Callback URLs", "Allowed Web Origins" and "Allowed Logout URLs" respectively. (If you get an error when logging in later about "OIDC", go to Advanced Settings section, and then OAuth, and turn off 'OIDC Conformant') - Add a new rule in Auth0:
function (user, context, callback) {
context.idToken["https://spoke/user_metadata"] = user.user_metadata;
callback(null, user, context);
}
- Run
npm run dev
to start the app. Wait until you see both "Node app is running ..." and "webpack: Compiled successfully." before attempting to connect. (make sure environment variableJOBS_SAME_PROCESS=1
) - Go to
http://localhost:3000
to load the app. - As long as you leave
SUPPRESS_SELF_INVITE=
blank and unset in your.env
you should be able to invite yourself from the homepage.- If you DO set that variable, then spoke will be invite-only and you'll need to generate an invite. Run:
echo "INSERT INTO invite (hash,is_valid) VALUES ('abc', 1);" |sqlite3 mydb.sqlite
# Note: When doing this with PostgreSQL, you would replace the `1` with `true`
- Then use the generated key to visit an invite link, e.g.: http://localhost:3000/invite/abc. This should redirect you to the login screen. Use the "Sign Up" option to create your account.
- You should then be prompted to create an organization. Create it.
If you want to create an invite via the home page "Login and get started" link, make sure your SUPPRESS_SELF_INVITE
variable is not set.
See https://github.com/MoveOnOrg/Spoke/blob/main/docs/HOWTO-run_tests.md
- Run
sqlite3 mydb.sqlite
to connect to a SQL shell for the dev database - Set up an ESLint plugin in your code editor so that you catch coding errors and follow code style guidelines more easily!
- Install the redux-devtools-extension in Chrome to get advanced Redux debugging features.
- Right now there is a bug in Apollo (apollographql/react-apollo#57) that means in one particular case, errors get swallowed. If you end up with an app that is silently breaking, console.log(this.props.data) and check the errors property.
If you need to use Twilio in development but with live keys, click here for instructions.
- Run
OUTPUT_DIR=./build npm run prod-build-server
This will generate something you can deploy to production in ./build and run nodejs server/server/index.js - Run
npm run prod-build-client
- Make a copy of
deploy/spoke-pm2.config.js.template
, e.g.spoke-pm2.config.js
, add missing environment variables, and run it with pm2, e.g.pm2 start spoke-pm2.config.js --env production
- Install PostgreSQL
- Start PostgreSQL (e.g.
sudo /etc/init.d/postgresql start
), connect (e.g.sudo -u postgres psql
), create a user and database (e.g.create user spoke password 'spoke'; create database spoke owner spoke;
), disconnect (e.g.\q
) and add credentials toDB_
variables in spoke-pm2.config.js
Spoke is licensed under the MIT license.