fulcrum-schema v3.0.1
Fulcrum Query Table Schema 
Setup
npm install -g browserifyBuild
makeDistribute
Builds the final output. The main output file dist/fulcrum-schema.js.
makeDeploying
When making changes to this library, the fulcrum-schema.js file needs to be copied to the Fulcrum web app directory in public. At the
same time the fulcrum-query repo needs to be upgraded to use the new version.
DO NOT change the template.sql in the web app without a complete understanding of the side effects. In most cases a core schema
change will have to be hand-coded and applied to all existing databases. The template.sql file represents the one-time V1 version
of the query schema and should never change unless there's a very good reason.
Copy files to other repositories
Copies the build output and docs to the other repositories (each are optional, but at least one is needed).
You can define the paths to the Fulcrum repos using environment variables in your shell config:
export FULCRUM_ANDROID=/path/to/android/app
export FULCRUM_IOS=/path/to/ios/app
export FULCRUM_WEB=/path/to/web/app
export FULCRUM_SITE=/path/to/websiteOr you can assign them in the make command:
FULCRUM_SITE=$HOME/dev/fulcrumapp.com make dist copyOnce you have the environment variables set, you can run:
make copy
or
make dist copy # clean, build and deploy everythingTests
make test