@treehouse/guidelines

1.0.2 • Public • Published

TreeHouse Team Guidelines

This repository contains all guidelines for the development team. This is meant as a living document and contributions or changes are welcome and can be discussed through the form of a Pull Request to this repository.

Development environment

A default local development environment can be quickly set up using our provisioning scripts. This will install the Atom IDE and configure a basic Node environment with the n module available to quickly switch between Node versions on your local machine.

Once your development environment is configured, you can customize your toolsets or IDE as you see fit so long as any final pushed code aligns with TreeHouse development guidelines and any agreed-upon conventions as determined by your team.

Node.js

The "Current" (6.x) version of Node is being used unless otherwise noted in a specific project. TreeHouse has a private NPM namespace at @treehouse/[package] which contains code specific to TreeHouse applications or where a public release is not appropriate due to the volatility of the development state. (See our open source guidelines for more details on use)

NPM Token

Once you have been added to our NPM organization you will need to login and add the authorization token to your .bash_profile in order to install and run any host application with a private dependency:

  1. npm login and enter your credentials.
  2. cat ~/.npmrc | awk -F'authToken=' '{print $2}' | pbcopy to copy your access token.
  3. atom ~/.bash_profile to edit your bash profile
  4. Add export NPM_TOKEN="[token]" to the top of this file.
  5. source ~/.bash_profile to refresh your Terminal session.

Docker

Docker is being used to run databases locally depending on the specific project requirements. Kitematic is installed as a GUI for managing the running containers.

Databases

Databases will be determined by the project and it's specific needs. With that in mind, we will typically use the following databases:

  • MongoDB for most dynamic models and associations.
  • Redis for sessions and sockets along with caching where appropriate.
  • ElasticSearch for analytics and reporting purposes.

All databases can be installed and run locally in a Docker container using Kitematic.

Development guidelines

Team development guidelines and agreed-upon conventions should be observed at all times. More information on general team guidelines can be found in Contributing Guidelines.

Solution architecture

Specific architecture decisions will be documented in their corresponding repositories. With that said, we will generally use the following technologies:

  • Sails and Express for server-side API and models
  • Angular for front-end and client-facing UX
  • SASS for structured styling and responsive CSS
  • Webpack for bundling of client-side Javascript

Whenever appropriate, new applications which can be built off the main services API will be structured as independent lightweight front-end applications.

Following best practices, all applications store sensitive configuration in the environment and not the codebase. Local configuration can be managed in config/local.js to provide environment variables at run-time when developing locally.

Logging and metrics

Winston is used to declare various levels of verbosity in the log output. In production, only info level and above will be sent to Logentries for storage and aggregation. In development, the logging output can be adjusted for individual debugging needs but defaults to verbose and above.

In addition to standard logging, exception tracking in Production on both the server and the client will be reported through Raygun. This will include aggregation of full stack traces along with details on the user and browser when the exception occurred.

New Relic APM is used for storage and aggregation of all metrics from applications running in production. In addition, it will serve as uptime monitor and emergency alerts in the case of an issue in production.

Deployment

Heroku is used for all production applications, QA environments, and review apps. Each application will be configured in a Pipeline. This ensures that all code being reviewed at any stage in the feature development lifecycle is done so on an exact replica of the production environment.

IBM Compose is used for all databases and provides automated backups and disaster recovery in addition to general database environment optimization and configuration.

Due to ephemeral file systems on all production applications, any permanent file storage will utilize Amazon S3 buckets. When files are uploaded by users, a CORS upload will be used to transfer the file directly between the user and S3 without involving the production application.

Cloudflare is used as both a CDN and a layer of threat mitigation. If custom proxying is required an additional proxy server may be used which runs NGINX. Generally, all caching should be deferred to either Cloudflare or NGINX to avoid cache conflicts and prevent deployment complications.

Readme

Keywords

none

Package Sidebar

Install

npm i @treehouse/guidelines

Weekly Downloads

0

Version

1.0.2

License

MIT

Last publish

Collaborators

  • mwj8410
  • ignigena
  • albert-treehouse
  • lukeheath