Thanks for checking out our code. The documentation below may be incomplete or incorrect. We welcome pull requests! But we're a very small team, so we can't guarantee timely responses.
❤️, Edward, Ray, Lawrence, Minda, Robbie, & Connor
You need to install redis locally, then follow the steps to launch it on startup (on the default port of 6379). For OSX/MacOS:
brew install redis
Arch Linux:
pacman -S redis
systemctl enable redis.service
systemctl start redis.service
Ubuntu Linux:
sudo apt-get -y install redis-server
sudo systemctl enable redis
sudo systemctl start redis
Next install the node modules (and Yarn, if you don't already have it available):
npm install -g foreman yarn
yarn install
Create a .env
file in the root directory. Values in square brackets are team specific and should be supplied:
ADMIN_GOOGLE_CLIENT_ID=[ client id ]
ADMIN_GOOGLE_CLIENT_SECRET=[ client secret ]
AWS_S3_BUCKET=[ bucket name ]
AWS_SECRET_ACCESS_KEY=[ secret access key ]
AWS_ACCESS_KEY_ID=[ access key id ]
COOKIE_NAME=[ any string without spaces ]
COOKIE_SECRET=[ any string without spaces ]
DATABASE_URL=postgres://localhost:5432/hylo
DEBUG_SQL=true
DOMAIN=localhost:3001
EMAIL_SENDER=[ email ]
FACEBOOK_APP_ID=[ app id ]
FACEBOOK_APP_SECRET=[ app secret ]
GOOGLE_CLIENT_ID=[ client id ]
GOOGLE_CLIENT_SECRET=[ client secret ]
HYLO_ADMINS=[ your user id ]
LINKEDIN_API_KEY=[ api key ]
LINKEDIN_API_SECRET=[ api secret ]
MAILGUN_DOMAIN=[ domain ]
MAILGUN_EMAIL_SALT=[ salt ]
MAPBOX_TOKEN=[ key ]
NEW_RELIC_LICENSE_KEY_DISABLED=[ key ]
NODE_ENV=development
PLAY_APP_SECRET=[ app secret ]
PRETTY_JSON=true
PROTOCOL=http
REDIS_URL=redis://0.0.0.0:6379
ROLLBAR_SERVER_TOKEN=[ token ]
SEGMENT_KEY=[ key ]
SENDWITHUS_KEY=[ key ]
SLACK_APP_CLIENT_ID=[ client id ]
SLACK_APP_CLIENT_SECRET=[ client secret ]
UPLOADER_HOST=[ hostname ]
UPLOADER_PATH_PREFIX=[ path ]
ADMIN_GOOGLE_CLIENT_*
: To access the admin console. Get these values from the hylo-admin Google project.ASSET_HOST_URL
: The host for static assets. In development, this is the hylo-frontend server, which listens atlocalhost:1337
by default.DEBUG_SQL
: set totrue
if you want to output the SQL used within knex/bookshelfDATABASE_URL
: set to your local DB instancePLAY_APP_SECRET
: set to a string over length 16 to avoid the code erroring. real value only needed for running in production environmentROLLBAR_SERVER_TOKEN
: use thepost_server_item
token in RollbarSENDWITHUS_KEY
: set up a test key in SendWithUs to send all email only to you (ask someone with admin rights to set this up)SLACK_APP_CLIENT_ID
: set up an app on Slack and reference its' client id, optional for dev installationSLACK_APP_CLIENT_SECRET
: reference the client secret from that same app on Slack, optional for dev installation
If a local Postgres server is running and your user has create database privileges, you should be able to:
createdb hylo -h localhost
createdb hylo_test -h localhost
cat migrations/schema.sql | psql hylo
./node_modules/.bin/knex seed:run
This is only necessary if you're creating a fresh instance and aren't going to be loading a database snapshot (see below for that process). If you're new, you can also use the dummy seed to truncate everything and populate a bunch of fake data including a test account login like so:
You will also need to login to run psql hylo -c "CREATE EXTENSION postgis;"
NODE_ENV=dummy npm run knex seed:run
This will trash everything in your current hylo
database, so make sure you really want to do that! The script will ask for confirmation. By default the test user will be [email protected]
with password hylo
, configurable at the top of seeds/dummy/dummy.js
.
npm run dev
This reads the .env
file you created above, using dotenv, and starts two processes managed by foreman
: one web server process and one background job worker process, as listed in Procfile.dev
. If you want to run only one of the processes, pass its name in Procfile.dev
as an argument, e.g. npm run dev -- web
.
Now visit localhost:3001.
Run npm test
or npm run cover
. The tests should use a different database (see below), because it creates and drops the database schema on each run.
Create a file called .env.test
to set environment variables for the test environment.
# NOTE: don't put comments after a variable initialization. it will break your tests!
# run tests against a different database
DATABASE_URL=postgres://localhost/hylo_test
DOMAIN=testdomain
# this prevents jobs that were queued during testing from being run in development
KUE_NAMESPACE=qtest
PROTOCOL=http
# don't log errors to Rollbar
ROLLBAR_SERVER_TOKEN=
# you can set up a SendWithUs API key to return valid responses but send no email
SENDWITHUS_KEY=test_...
MAILGUN_EMAIL_SALT=FFFFAAAA123456789
MAILGUN_DOMAIN=mg.hylo.com
PLAY_APP_SECRET=quxgrault12345678
AWS_ACCESS_KEY_ID=foo
UPLOADER_PATH_PREFIX=foo
(Without the above Mailgun values, you'll see a failing test in the suite.) Since the test database was created above, npm test
should work at this point.
Migrations are managed by the knex library. Create a new migration with this command:
knex migrate:make my_migration_name
(You can either install knex globally with npm install -g knex
, or run the version in your node_modules
with ./node_modules/.bin/knex
.)
Run migrations with npm run migrate
and rollback the last one with npm run rollback
.
The values of DB_USERNAME
, DB_HOST
, DB_PORT
, and DB_NAME
below can be obtained from DATABASE_URL
in heroku config
.
LOCAL_DB_NAME=hylo
DUMP_FILENAME=dbdump
pg_dump -O -U $DB_USERNAME -h $DB_HOST -p $DB_PORT $DB_NAME > $DUMP_FILENAME
# stop all processes that have open database connections, then:
dropdb $LOCAL_DB_NAME -h localhost
createdb $LOCAL_DB_NAME -h localhost
cat $DUMP_FILENAME | psql -h localhost $LOCAL_DB_NAME
- GET methods on
FooController
should return instances ofFoo
. (See policies.js for some related FIXME's)
We're gradually migrating to Javascript Standard Style.
The standard-formatter Atom package helps out a lot. We deviate from its default behavior only in not indenting a multi-line method chain:
// yes
return Do(() => {
amaze()
very()
})
.then(such)
.tap(wow)
// no
return Do(() => {
amaze()
very()
})
.then(such)
.tap(wow)
The linter-js-standard package is also very helpful.
Many queries can also be issued using the newer GraphQL API. Types available:
Comment
Community
FeedItem
Follower
Me
Membership
Person
Post
Queries:
type Query {
me: Me
person(id: ID): Person
community(id: ID, slug: String): Community
}
where Me
is the currently logged-in user. For example, to load all posts:
{
me {
posts {
id,
title,
type,
details,
creator {
id,
name,
avatarUrl
}
followers {
id,
name,
avatarUrl
}
followersTotal,
communities {
id,
name
},
communitiesTotal,
comments {
id,
createdAt,
text,
creator {
id
}
},
commentsTotal,
createdAt,
fulfilledAt
}
}
}